diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..a0060bc --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +README.md +.git +*/.git +*/node_modules/ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..14c6519 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.env +hashs.txt diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..63963d2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +FROM ntxcode/ubuntu-base:14.04 +MAINTAINER Nathan Ribeiro, ntxdev + +# Install nginx +RUN \ + apt-get update -yq && DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends nginx && \ + mkdir -p /var/www + +# Copy application builds to their expected location +COPY ./zup-landingpage /var/www/zup-landing +COPY ./zup-painel /var/www/zup-painel +COPY ./zup-web-angular /var/www/zup-web-cidadao + +COPY ./entrypoint.sh / + +COPY ./nginx.conf /etc/nginx/nginx.conf +RUN rm /etc/nginx/sites-enabled/default +RUN chown -R nobody. /var/www + +ENTRYPOINT ["/entrypoint.sh"] + +CMD ["nginx"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..187aa97 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# ZUP Web + +Este repositório contém os arquivos necessários para construir uma imagem Docker contendo o Painel, Aplicativo Web +Cidadão e Landing Page do projeto ZUP. Para projetos que utilizem dois ou mais desses componentes, esse repositório pode +ser utilizado para facilitar o processo de deploy. + +## Build da imagem + +Primeiramente, atualize as pastas `zup-landingpage`, `zup-painel` e `zup-web-angular` com a build de produção (pasta `dist`) +dos respectivos componentes. Após isso basta executar o seguinte comando: + +``` +docker build -t zup-web:latest . +``` + +Isso fará com que uma imagem `zup-web` com a tag `latest` seja gerada. + + +## Configuração e execução + +Crie um arquivo `web.env` em uma localização de sua preferência. Dentro desse arquivo, coloque em cada linha qualquer uma das +variáveis oferecidas pelo Painel, Cidadão Web e Landing Page. Após isso, basta rodar a imagem com o seguinte comando: + +``` +docker run -d --name zup-web --env-file /algum/caminho/web.env -p 80:80 zup-web:latest +``` + +O servidor irá servir os arquivos na porta 80 do host do Docker. \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100755 index 0000000..88f2105 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,118 @@ +#!/usr/bin/env bash +set -e +set -o pipefail + +blow_up() { + echo "Missing required enviroment variable '$1'. Please, take a look at the manual." >&2 + exit 1 +} +[ "$API_URL" ] || blow_up 'API_URL' +[ "$MAP_LAT" ] || blow_up 'MAP_LAT' +[ "$MAP_LNG" ] || blow_up 'MAP_LNG' +[ "$MAP_ZOOM" ] || blow_up 'MAP_ZOOM' + +if [ "$DISABLE_PANEL" = true ] ; then + rm -rf /var/www/zup-painel +else + sed -i -E "s@(apiEndpoint:')([^']*)?(')@\1$API_URL\3@g" /var/www/zup-painel/config/main.constants.js + sed -i -E "s@(mapLat:')([^']*)?(')@\1$MAP_LAT\3@g" /var/www/zup-painel/config/main.constants.js + sed -i -E "s@(mapLng:')([^']*)?(')@\1$MAP_LNG\3@g" /var/www/zup-painel/config/main.constants.js + sed -i -E "s@(mapZoom:')([^']*)?(')@\1$MAP_ZOOM\3@g" /var/www/zup-painel/config/main.constants.js + sed -i -E "s@(logoImgUrl:')([^']*)?(')@\1$LOGO_IMG_URL\3@g" /var/www/zup-painel/config/main.constants.js + sed -i -E "s@(theme:')([^']*)?(')@\1$THEME\3@g" /var/www/zup-painel/config/main.constants.js + + sed -i "s@SENTRY_DSN@$SENTRY_DSN@g" /var/www/zup-painel/index.html + sed -i "s@GOOGLE_ANALYTICS_KEY@$GOOGLE_ANALYTICS_KEY@g" /var/www/zup-painel/index.html + sed -i "s@PAGE_TITLE@$PANEL_PAGE_TITLE@g" /var/www/zup-painel/index.html + + [ -d /painel/images ] && cp -R /painel/images/*.* /var/www/zup-painel/assets/images +fi + +if [ "$DISABLE_WEB_APP" = true ] ; then + echo "Web citizen application will not be available." + rm -rf /var/www/zup-web-cidadao/**/* + [ "$DISABLE_PANEL" != true ] && echo '' > /var/www/zup-web-cidadao/index.html +else + sed -i -E "s@(apiEndpoint:')([^']*)?(')@\1$API_URL\3@g" /var/www/zup-web-cidadao/scripts/constants.js + sed -i -E "s@(mapLat:')([^']*)?(')@\1$MAP_LAT\3@g" /var/www/zup-web-cidadao/scripts/constants.js + sed -i -E "s@(mapLng:')([^']*)?(')@\1$MAP_LNG\3@g" /var/www/zup-web-cidadao/scripts/constants.js + sed -i -E "s@(mapZoom:')([^']*)?(')@\1$MAP_ZOOM\3@g" /var/www/zup-web-cidadao/scripts/constants.js + + sed -i "s@GOOGLE_ANALYTICS_KEY@$GOOGLE_ANALYTICS_KEY@g" /var/www/zup-web-cidadao/index.html + + [ -d /web/images ] && cp -R /web/images/*.* /var/www/zup-web-cidadao/images + + if [ -z "$PAGE_TITLE" ]; then + sed -i "s@PAGE_TITLE@ZUP Web@g" /var/www/zup-web-cidadao/index.html + else + sed -i "s@PAGE_TITLE@$PAGE_TITLE@g" /var/www/zup-web-cidadao/index.html + fi + + [ -f /web/terms.html ] && TERMS_AND_CONDITIONS_HTML=`cat /web/terms.html` + + if [ -z "$TERMS_AND_CONDITIONS_HTML" ]; then + sed -i "s@HAS_TERMS_AND_CONDITIONS@none@g" /var/www/zup-web-cidadao/styles/*.main.css + else + perl -i -pe "s@TERMS_AND_CONDITIONS_HTML@$TERMS_AND_CONDITIONS_HTML@g" /var/www/zup-web-cidadao/index.html + perl -i -pe "s@TERMS_AND_CONDITIONS_HTML@$TERMS_AND_CONDITIONS_HTML@g" /var/www/zup-web-cidadao/views/modal_terms_of_use.html + sed -i "s@HAS_TERMS_AND_CONDITIONS@block@g" /var/www/zup-web-cidadao/styles/*.main.css + fi +fi + +[ "$DEFAULT_CITY" != "" ] && CITY_NAME=$DEFAULT_CITY +if [ "$DISABLE_LANDING_PAGE" = true ] || [ -z "$CITY_NAME" ] ; then + echo "Landing page will not be available." + rm -rf /var/www/zup-landing/**/* + [ "$DISABLE_PANEL" != true ] && echo '' > /var/www/zup-landing/index.html +else + sed -i "s@CITY_NAME@$CITY_NAME@g" /var/www/zup-landing/index.html + + [ -d /landing-page/images ] && cp -R /landing-page/images/*.* /var/www/zup-landing/images + + if [ -z "$PAGE_TITLE" ]; then + sed -i "s@PAGE_TITLE@ZUP@g" /var/www/zup-landing/index.html + else + sed -i "s@PAGE_TITLE@$PAGE_TITLE@g" /var/www/zup-landing/index.html + fi + + if [ -z "$APPLICATION_NAME" ]; then + sed -i "s@APPLICATION_NAME@ZUP@g" /var/www/zup-landing/index.html + else + sed -i "s@APPLICATION_NAME@$APPLICATION_NAME@g" /var/www/zup-landing/index.html + fi + + sed -i "s@API_URL@$API_URL@g" /var/www/zup-landing/scripts/main.js + if [ -z "$IOS_APP_LINK" ]; then + sed -i "s@HAS_IOS_APP_LINK@none@g" /var/www/zup-landing/styles/main.css + else + sed -i "s@IOS_APP_LINK@$IOS_APP_LINK@g" /var/www/zup-landing/index.html + sed -i "s@HAS_IOS_APP_LINK@block@g" /var/www/zup-landing/styles/main.css + fi + + if [ -z "$ANDROID_APP_LINK" ]; then + sed -i "s@HAS_ANDROID_APP_LINK@none@g" /var/www/zup-landing/styles/main.css + else + sed -i "s@ANDROID_APP_LINK@$ANDROID_APP_LINK@g" /var/www/zup-landing/index.html + sed -i "s@HAS_ANDROID_APP_LINK@block@g" /var/www/zup-landing/styles/main.css + fi + + if [ -z "$WEB_APP_LINK" ]; then + sed -i "s@HAS_WEB_APP_LINK@none@g" /var/www/zup-landing/styles/main.css + else + sed -i "s@WEB_APP_LINK@$WEB_APP_LINK@g" /var/www/zup-landing/index.html + sed -i "s@HAS_WEB_APP_LINK@block@g" /var/www/zup-landing/styles/main.css + fi + + [ -f /landing-page/terms.html ] && TERMS_AND_CONDITIONS_HTML=`cat /landing-page/terms.html` + + if [ -z "$TERMS_AND_CONDITIONS_HTML" ]; then + sed -i "s@HAS_TERMS_AND_CONDITIONS@none@g" /var/www/zup-landing/styles/main.css + else + perl -i -pe "s@TERMS_AND_CONDITIONS_HTML@$TERMS_AND_CONDITIONS_HTML@g" /var/www/zup-landing/index.html + sed -i "s@HAS_TERMS_AND_CONDITIONS@block@g" /var/www/zup-landing/styles/main.css + fi +fi + +echo "ZUP-WEB is running." + +exec "$@" diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..e5239ea --- /dev/null +++ b/nginx.conf @@ -0,0 +1,61 @@ +worker_processes 5; ## Default: 1 +error_log /dev/stdout; +worker_rlimit_nofile 8192; +daemon off; + +events { + worker_connections 4096; ## Default: 1024 +} + +http { + include /etc/nginx/mime.types; + + gzip on; + gzip_buffers 16 8k; + gzip_comp_level 6; + gzip_http_version 1.1; + gzip_min_length 256; + gzip_proxied any; + gzip_vary on; + gzip_types + text/xml application/xml application/atom+xml application/rss+xml application/xhtml+xml image/svg+xml + text/javascript application/javascript application/x-javascript + text/x-json application/json application/x-web-app-manifest+json + text/css text/plain text/x-component + font/opentype application/x-font-ttf application/vnd.ms-fontobject + image/x-icon; + gzip_disable "msie6"; + + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + types_hash_max_size 2048; + + default_type application/octet-stream; + + access_log /var/log/nginx/access.log; + error_log /var/log/nginx/error.log; + + server { + listen 80 default_server; + listen [::]:80 default_server ipv6only=on; + + rewrite ^([^\?#]*/)([^\?#\./]+)([\?#].*)?$ $scheme://$http_host$uri/ permanent; + + root /var/www/zup-landing; + index index.html index.htm; + + location /landing { + alias /var/www/zup-landing; + } + + location /painel { + alias /var/www/zup-painel; + } + + location /web { + alias /var/www/zup-web-cidadao; + } + } +} diff --git a/zup-landingpage/.htaccess b/zup-landingpage/.htaccess new file mode 100644 index 0000000..ca34658 --- /dev/null +++ b/zup-landingpage/.htaccess @@ -0,0 +1,663 @@ +# Apache Server Configs v2.2.0 | MIT License +# https://github.com/h5bp/server-configs-apache + +# (!) Using `.htaccess` files slows down Apache, therefore, if you have access +# to the main server config file (usually called `httpd.conf`), you should add +# this logic there: http://httpd.apache.org/docs/current/howto/htaccess.html. + +# ############################################################################## +# # CROSS-ORIGIN RESOURCE SHARING (CORS) # +# ############################################################################## + +# ------------------------------------------------------------------------------ +# | Cross-domain AJAX requests | +# ------------------------------------------------------------------------------ + +# Allow cross-origin AJAX requests. +# http://code.google.com/p/html5security/wiki/CrossOriginRequestSecurity +# http://enable-cors.org/ + +# +# Header set Access-Control-Allow-Origin "*" +# + +# ------------------------------------------------------------------------------ +# | CORS-enabled images | +# ------------------------------------------------------------------------------ + +# Send the CORS header for images when browsers request it. +# https://developer.mozilla.org/en-US/docs/HTML/CORS_Enabled_Image +# http://blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html +# http://hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/ + + + + + SetEnvIf Origin ":" IS_CORS + Header set Access-Control-Allow-Origin "*" env=IS_CORS + + + + +# ------------------------------------------------------------------------------ +# | Web fonts access | +# ------------------------------------------------------------------------------ + +# Allow access to web fonts from all domains. + + + + Header set Access-Control-Allow-Origin "*" + + + + +# ############################################################################## +# # ERRORS # +# ############################################################################## + +# ------------------------------------------------------------------------------ +# | 404 error prevention for non-existing redirected folders | +# ------------------------------------------------------------------------------ + +# Prevent Apache from returning a 404 error as the result of a rewrite +# when the directory with the same name does not exist. +# http://httpd.apache.org/docs/current/content-negotiation.html#multiviews +# http://www.webmasterworld.com/apache/3808792.htm + +Options -MultiViews + +# ------------------------------------------------------------------------------ +# | Custom error messages / pages | +# ------------------------------------------------------------------------------ + +# Customize what Apache returns to the client in case of an error. +# http://httpd.apache.org/docs/current/mod/core.html#errordocument + +ErrorDocument 404 /404.html + + +# ############################################################################## +# # INTERNET EXPLORER # +# ############################################################################## + +# ------------------------------------------------------------------------------ +# | Better website experience | +# ------------------------------------------------------------------------------ + +# Force Internet Explorer to render pages in the highest available mode +# in the various cases when it may not. +# http://hsivonen.iki.fi/doctype/ie-mode.pdf + + + Header set X-UA-Compatible "IE=edge" + # `mod_headers` cannot match based on the content-type, however, this + # header should be send only for HTML pages and not for the other resources + + Header unset X-UA-Compatible + + + +# ------------------------------------------------------------------------------ +# | Cookie setting from iframes | +# ------------------------------------------------------------------------------ + +# Allow cookies to be set from iframes in Internet Explorer. +# http://msdn.microsoft.com/en-us/library/ms537343.aspx +# http://www.w3.org/TR/2000/CR-P3P-20001215/ + +# +# Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"" +# + + +# ############################################################################## +# # MIME TYPES AND ENCODING # +# ############################################################################## + +# ------------------------------------------------------------------------------ +# | Proper MIME types for all files | +# ------------------------------------------------------------------------------ + + + + # Audio + AddType audio/mp4 m4a f4a f4b + AddType audio/ogg oga ogg opus + + # Data interchange + AddType application/json json map + AddType application/ld+json jsonld + + # JavaScript + # Normalize to standard type. + # http://tools.ietf.org/html/rfc4329#section-7.2 + AddType application/javascript js + + # Video + AddType video/mp4 f4v f4p m4v mp4 + AddType video/ogg ogv + AddType video/webm webm + AddType video/x-flv flv + + # Web fonts + AddType application/font-woff woff + AddType application/vnd.ms-fontobject eot + + # Browsers usually ignore the font MIME types and simply sniff the bytes + # to figure out the font type. + # http://mimesniff.spec.whatwg.org/#matching-a-font-type-pattern + + # Chrome however, shows a warning if any other MIME types are used for + # the following fonts. + + AddType application/x-font-ttf ttc ttf + AddType font/opentype otf + + # Make SVGZ fonts work on the iPad. + # https://twitter.com/FontSquirrel/status/14855840545 + AddType image/svg+xml svgz + AddEncoding gzip svgz + + # Other + AddType application/octet-stream safariextz + AddType application/x-chrome-extension crx + AddType application/x-opera-extension oex + AddType application/x-web-app-manifest+json webapp + AddType application/x-xpinstall xpi + AddType application/xml atom rdf rss xml + AddType image/webp webp + AddType image/x-icon cur + AddType text/cache-manifest appcache manifest + AddType text/vtt vtt + AddType text/x-component htc + AddType text/x-vcard vcf + + + +# ------------------------------------------------------------------------------ +# | UTF-8 encoding | +# ------------------------------------------------------------------------------ + +# Use UTF-8 encoding for anything served as `text/html` or `text/plain`. +AddDefaultCharset utf-8 + +# Force UTF-8 for certain file formats. + + AddCharset utf-8 .atom .css .js .json .jsonld .rss .vtt .webapp .xml + + + +# ############################################################################## +# # URL REWRITES # +# ############################################################################## + +# ------------------------------------------------------------------------------ +# | Rewrite engine | +# ------------------------------------------------------------------------------ + +# Turn on the rewrite engine and enable the `FollowSymLinks` option (this is +# necessary in order for the following directives to work). + +# If your web host doesn't allow the `FollowSymlinks` option, you may need to +# comment it out and use `Options +SymLinksIfOwnerMatch`, but be aware of the +# performance impact. +# http://httpd.apache.org/docs/current/misc/perf-tuning.html#symlinks + +# Also, some cloud hosting services require `RewriteBase` to be set. +# http://www.rackspace.com/knowledge_center/frequently-asked-question/why-is-mod-rewrite-not-working-on-my-site + + + Options +FollowSymlinks + # Options +SymLinksIfOwnerMatch + RewriteEngine On + # RewriteBase / + + +# ------------------------------------------------------------------------------ +# | Suppressing / Forcing the `www.` at the beginning of URLs | +# ------------------------------------------------------------------------------ + +# The same content should never be available under two different URLs, +# especially not with and without `www.` at the beginning. This can cause +# SEO problems (duplicate content), and therefore, you should choose one +# of the alternatives and redirect the other one. + +# By default `Option 1` (no `www.`) is activated. +# http://no-www.org/faq.php?q=class_b + +# If you would prefer to use `Option 2`, just comment out all the lines +# from `Option 1` and uncomment the ones from `Option 2`. + +# IMPORTANT: NEVER USE BOTH RULES AT THE SAME TIME! + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Option 1: rewrite www.example.com → example.com + + + RewriteCond %{HTTPS} !=on + RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] + RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L] + + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Option 2: rewrite example.com → www.example.com + +# Be aware that the following might not be a good idea if you use "real" +# subdomains for certain parts of your website. + +# +# RewriteCond %{HTTPS} !=on +# RewriteCond %{HTTP_HOST} !^www\. [NC] +# RewriteCond %{SERVER_ADDR} !=127.0.0.1 +# RewriteCond %{SERVER_ADDR} !=::1 +# RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] +# + + +# ############################################################################## +# # SECURITY # +# ############################################################################## + +# ------------------------------------------------------------------------------ +# | Clickjacking | +# ------------------------------------------------------------------------------ + +# Protect website against clickjacking. + +# The example below sends the `X-Frame-Options` response header with the value +# `DENY`, informing browsers not to display the web page content in any frame. + +# This might not be the best setting for everyone. You should read about the +# other two possible values for `X-Frame-Options`: `SAMEORIGIN` & `ALLOW-FROM`. +# http://tools.ietf.org/html/rfc7034#section-2.1 + +# Keep in mind that while you could send the `X-Frame-Options` header for all +# of your site’s pages, this has the potential downside that it forbids even +# non-malicious framing of your content (e.g.: when users visit your site using +# a Google Image Search results page). + +# Nonetheless, you should ensure that you send the `X-Frame-Options` header for +# all pages that allow a user to make a state changing operation (e.g: pages +# that contain one-click purchase links, checkout or bank-transfer confirmation +# pages, pages that make permanent configuration changes, etc.). + +# Sending the `X-Frame-Options` header can also protect your website against +# more than just clickjacking attacks: https://cure53.de/xfo-clickjacking.pdf. + +# http://tools.ietf.org/html/rfc7034 +# http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx +# https://www.owasp.org/index.php/Clickjacking + +# +# Header set X-Frame-Options "DENY" +# +# Header unset X-Frame-Options +# +# + +# ------------------------------------------------------------------------------ +# | Content Security Policy (CSP) | +# ------------------------------------------------------------------------------ + +# Mitigate the risk of cross-site scripting and other content-injection attacks. + +# This can be done by setting a `Content Security Policy` which whitelists +# trusted sources of content for your website. + +# The example header below allows ONLY scripts that are loaded from the current +# site's origin (no inline scripts, no CDN, etc). This almost certainly won't +# work as-is for your site! + +# For more details on how to craft a reasonable policy for your site, read: +# http://html5rocks.com/en/tutorials/security/content-security-policy (or the +# specification: http://w3.org/TR/CSP). Also, to make things easier, you can +# use an online CSP header generator such as: http://cspisawesome.com/. + +# +# Header set Content-Security-Policy "script-src 'self'; object-src 'self'" +# +# Header unset Content-Security-Policy +# +# + +# ------------------------------------------------------------------------------ +# | File access | +# ------------------------------------------------------------------------------ + +# Block access to directories without a default document. +# You should leave the following uncommented, as you shouldn't allow anyone to +# surf through every directory on your server (which may includes rather private +# places such as the CMS's directories). + + + Options -Indexes + + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Block access to hidden files and directories. +# This includes directories used by version control systems such as Git and SVN. + + + RewriteCond %{SCRIPT_FILENAME} -d [OR] + RewriteCond %{SCRIPT_FILENAME} -f + RewriteRule "(^|/)\." - [F] + + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Block access to files that can expose sensitive information. + +# By default, block access to backup and source files that may be left by some +# text editors and can pose a security risk when anyone has access to them. +# http://feross.org/cmsploit/ + +# IMPORTANT: Update the `` regular expression from below to include +# any files that might end up on your production server and can expose sensitive +# information about your website. These files may include: configuration files, +# files that contain metadata about the project (e.g.: project dependencies), +# build scripts, etc.. + + + + # Apache < 2.3 + + Order allow,deny + Deny from all + Satisfy All + + + # Apache ≥ 2.3 + + Require all denied + + + + +# ------------------------------------------------------------------------------ +# | Reducing MIME-type security risks | +# ------------------------------------------------------------------------------ + +# Prevent some browsers from MIME-sniffing the response. + +# This reduces exposure to drive-by download attacks and should be enable +# especially if the web server is serving user uploaded content, content +# that could potentially be treated by the browser as executable. + +# http://blogs.msdn.com/b/ie/archive/2008/07/02/ie8-security-part-v-comprehensive-protection.aspx +# http://msdn.microsoft.com/en-us/library/ie/gg622941.aspx +# http://mimesniff.spec.whatwg.org/ + +# +# Header set X-Content-Type-Options "nosniff" +# + +# ------------------------------------------------------------------------------ +# | Reflected Cross-Site Scripting (XSS) attacks | +# ------------------------------------------------------------------------------ + +# (1) Try to re-enable the Cross-Site Scripting (XSS) filter built into the +# most recent web browsers. +# +# The filter is usually enabled by default, but in some cases it may be +# disabled by the user. However, in Internet Explorer for example, it can +# be re-enabled just by sending the `X-XSS-Protection` header with the +# value of `1`. +# +# (2) Prevent web browsers from rendering the web page if a potential reflected +# (a.k.a non-persistent) XSS attack is detected by the filter. +# +# By default, if the filter is enabled and browsers detect a reflected +# XSS attack, they will attempt to block the attack by making the smallest +# possible modifications to the returned web page. +# +# Unfortunately, in some browsers (e.g.: Internet Explorer), this default +# behavior may allow the XSS filter to be exploited, thereby, it's better +# to tell browsers to prevent the rendering of the page altogether, instead +# of attempting to modify it. +# +# http://hackademix.net/2009/11/21/ies-xss-filter-creates-xss-vulnerabilities +# +# IMPORTANT: Do not rely on the XSS filter to prevent XSS attacks! Ensure that +# you are taking all possible measures to prevent XSS attacks, the most obvious +# being: validating and sanitizing your site's inputs. +# +# http://blogs.msdn.com/b/ie/archive/2008/07/02/ie8-security-part-iv-the-xss-filter.aspx +# http://blogs.msdn.com/b/ieinternals/archive/2011/01/31/controlling-the-internet-explorer-xss-filter-with-the-x-xss-protection-http-header.aspx +# https://www.owasp.org/index.php/Cross-site_Scripting_%28XSS%29 + +# +# # (1) (2) +# Header set X-XSS-Protection "1; mode=block" +# +# Header unset X-XSS-Protection +# +# + +# ------------------------------------------------------------------------------ +# | Secure Sockets Layer (SSL) | +# ------------------------------------------------------------------------------ + +# Rewrite secure requests properly in order to prevent SSL certificate warnings. +# E.g.: prevent `https://www.example.com` when your certificate only allows +# `https://secure.example.com`. + +# +# RewriteCond %{SERVER_PORT} !^443 +# RewriteRule ^ https://example-domain-please-change-me.com%{REQUEST_URI} [R=301,L] +# + +# ------------------------------------------------------------------------------ +# | HTTP Strict Transport Security (HSTS) | +# ------------------------------------------------------------------------------ + +# Force client-side SSL redirection. + +# If a user types `example.com` in his browser, the above rule will redirect +# him to the secure version of the site. That still leaves a window of +# opportunity (the initial HTTP connection) for an attacker to downgrade or +# redirect the request. + +# The following header ensures that browser will ONLY connect to your server +# via HTTPS, regardless of what the users type in the address bar. + +# http://tools.ietf.org/html/draft-ietf-websec-strict-transport-sec-14#section-6.1 +# http://www.html5rocks.com/en/tutorials/security/transport-layer-security/ + +# IMPORTANT: Remove the `includeSubDomains` optional directive if the subdomains +# are not using HTTPS. + +# +# Header set Strict-Transport-Security "max-age=16070400; includeSubDomains" +# + +# ------------------------------------------------------------------------------ +# | Server software information | +# ------------------------------------------------------------------------------ + +# Avoid displaying the exact Apache version number, the description of the +# generic OS-type and the information about Apache's compiled-in modules. + +# ADD THIS DIRECTIVE IN THE `httpd.conf` AS IT WILL NOT WORK IN THE `.htaccess`! + +# ServerTokens Prod + + +# ############################################################################## +# # WEB PERFORMANCE # +# ############################################################################## + +# ------------------------------------------------------------------------------ +# | Compression | +# ------------------------------------------------------------------------------ + + + + # Force compression for mangled headers. + # http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping + + + SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding + RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding + + + + # Compress all output labeled with one of the following MIME-types + # (for Apache versions below 2.3.7, you don't need to enable `mod_filter` + # and can remove the `` and `` lines + # as `AddOutputFilterByType` is still in the core directives). + + AddOutputFilterByType DEFLATE application/atom+xml \ + application/javascript \ + application/json \ + application/ld+json \ + application/rss+xml \ + application/vnd.ms-fontobject \ + application/x-font-ttf \ + application/x-web-app-manifest+json \ + application/xhtml+xml \ + application/xml \ + font/opentype \ + image/svg+xml \ + image/x-icon \ + text/css \ + text/html \ + text/plain \ + text/x-component \ + text/xml + + + + +# ------------------------------------------------------------------------------ +# | Content transformations | +# ------------------------------------------------------------------------------ + +# Prevent mobile network providers from modifying the website's content. +# http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.5. + +# +# Header set Cache-Control "no-transform" +# + +# ------------------------------------------------------------------------------ +# | ETags | +# ------------------------------------------------------------------------------ + +# Remove `ETags` as resources are sent with far-future expires headers. +# http://developer.yahoo.com/performance/rules.html#etags. + +# `FileETag None` doesn't work in all cases. + + Header unset ETag + + +FileETag None + +# ------------------------------------------------------------------------------ +# | Expires headers | +# ------------------------------------------------------------------------------ + +# The following expires headers are set pretty far in the future. If you +# don't control versioning with filename-based cache busting, consider +# lowering the cache time for resources such as style sheets and JavaScript +# files to something like one week. + + + + ExpiresActive on + ExpiresDefault "access plus 1 month" + + # CSS + ExpiresByType text/css "access plus 1 year" + + # Data interchange + ExpiresByType application/json "access plus 0 seconds" + ExpiresByType application/ld+json "access plus 0 seconds" + ExpiresByType application/xml "access plus 0 seconds" + ExpiresByType text/xml "access plus 0 seconds" + + # Favicon (cannot be renamed!) and cursor images + ExpiresByType image/x-icon "access plus 1 week" + + # HTML components (HTCs) + ExpiresByType text/x-component "access plus 1 month" + + # HTML + ExpiresByType text/html "access plus 0 seconds" + + # JavaScript + ExpiresByType application/javascript "access plus 1 year" + + # Manifest files + ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds" + ExpiresByType text/cache-manifest "access plus 0 seconds" + + # Media + ExpiresByType audio/ogg "access plus 1 month" + ExpiresByType image/gif "access plus 1 month" + ExpiresByType image/jpeg "access plus 1 month" + ExpiresByType image/png "access plus 1 month" + ExpiresByType video/mp4 "access plus 1 month" + ExpiresByType video/ogg "access plus 1 month" + ExpiresByType video/webm "access plus 1 month" + + # Web feeds + ExpiresByType application/atom+xml "access plus 1 hour" + ExpiresByType application/rss+xml "access plus 1 hour" + + # Web fonts + ExpiresByType application/font-woff "access plus 1 month" + ExpiresByType application/vnd.ms-fontobject "access plus 1 month" + ExpiresByType application/x-font-ttf "access plus 1 month" + ExpiresByType font/opentype "access plus 1 month" + ExpiresByType image/svg+xml "access plus 1 month" + + + +# ------------------------------------------------------------------------------ +# | Filename-based cache busting | +# ------------------------------------------------------------------------------ + +# If you're not using a build process to manage your filename version revving, +# you might want to consider enabling the following directives to route all +# requests such as `/css/style.12345.css` to `/css/style.css`. + +# To understand why this is important and a better idea than `*.css?v231`, read: +# http://stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring + +# +# RewriteCond %{REQUEST_FILENAME} !-f +# RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpe?g|gif)$ $1.$3 [L] +# + +# ------------------------------------------------------------------------------ +# | File concatenation | +# ------------------------------------------------------------------------------ + +# Allow concatenation from within specific style sheets and JavaScript files. + +# e.g.: +# +# If you have the following content in a file +# +# +# +# +# Apache will replace it with the content from the specified files. + +# +# +# Options +Includes +# AddOutputFilterByType INCLUDES application/javascript application/json +# SetOutputFilter INCLUDES +# +# +# Options +Includes +# AddOutputFilterByType INCLUDES text/css +# SetOutputFilter INCLUDES +# +# diff --git a/zup-landingpage/404.html b/zup-landingpage/404.html new file mode 100644 index 0000000..fdace4a --- /dev/null +++ b/zup-landingpage/404.html @@ -0,0 +1,157 @@ + + + + + Page Not Found :( + + + +
+

Not found :(

+

Sorry, but the page you were trying to view does not exist.

+

It looks like this was the result of either:

+
    +
  • a mistyped address
  • +
  • an out-of-date link
  • +
+ + +
+ + diff --git a/zup-landingpage/favicon.ico b/zup-landingpage/favicon.ico new file mode 100644 index 0000000..d1a7146 Binary files /dev/null and b/zup-landingpage/favicon.ico differ diff --git a/zup-landingpage/fonts/ionicons.eot b/zup-landingpage/fonts/ionicons.eot new file mode 100644 index 0000000..52b1e57 Binary files /dev/null and b/zup-landingpage/fonts/ionicons.eot differ diff --git a/zup-landingpage/fonts/ionicons.svg b/zup-landingpage/fonts/ionicons.svg new file mode 100644 index 0000000..5c8c909 --- /dev/null +++ b/zup-landingpage/fonts/ionicons.svg @@ -0,0 +1,1899 @@ + + + + + +Created by FontForge 20120731 at Mon Jun 16 14:44:31 2014 + By Adam Bradley +Created by Adam Bradley with FontForge 2.0 (http://fontforge.sf.net) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/zup-landingpage/fonts/ionicons.ttf b/zup-landingpage/fonts/ionicons.ttf new file mode 100644 index 0000000..cc67b2f Binary files /dev/null and b/zup-landingpage/fonts/ionicons.ttf differ diff --git a/zup-landingpage/fonts/ionicons.woff b/zup-landingpage/fonts/ionicons.woff new file mode 100644 index 0000000..1d7b977 Binary files /dev/null and b/zup-landingpage/fonts/ionicons.woff differ diff --git a/zup-landingpage/images/Logo_Instituto_TIM_RGB_Fundo_escuro.png b/zup-landingpage/images/Logo_Instituto_TIM_RGB_Fundo_escuro.png new file mode 100644 index 0000000..9c45f56 Binary files /dev/null and b/zup-landingpage/images/Logo_Instituto_TIM_RGB_Fundo_escuro.png differ diff --git a/zup-landingpage/images/comofunciona_icone1@2x.png b/zup-landingpage/images/comofunciona_icone1@2x.png new file mode 100644 index 0000000..0f91d98 Binary files /dev/null and b/zup-landingpage/images/comofunciona_icone1@2x.png differ diff --git a/zup-landingpage/images/comofunciona_icone2@2x.png b/zup-landingpage/images/comofunciona_icone2@2x.png new file mode 100644 index 0000000..f48f801 Binary files /dev/null and b/zup-landingpage/images/comofunciona_icone2@2x.png differ diff --git a/zup-landingpage/images/comofunciona_icone3@2x.png b/zup-landingpage/images/comofunciona_icone3@2x.png new file mode 100644 index 0000000..ecbae1e Binary files /dev/null and b/zup-landingpage/images/comofunciona_icone3@2x.png differ diff --git a/zup-landingpage/images/footer_logo_tim@2x.png b/zup-landingpage/images/footer_logo_tim@2x.png new file mode 100644 index 0000000..a4558e2 Binary files /dev/null and b/zup-landingpage/images/footer_logo_tim@2x.png differ diff --git a/zup-landingpage/images/header.jpg b/zup-landingpage/images/header.jpg new file mode 100644 index 0000000..14ec946 Binary files /dev/null and b/zup-landingpage/images/header.jpg differ diff --git a/zup-landingpage/images/header_menu_icone1_ativo@2x.png b/zup-landingpage/images/header_menu_icone1_ativo@2x.png new file mode 100644 index 0000000..3252383 Binary files /dev/null and b/zup-landingpage/images/header_menu_icone1_ativo@2x.png differ diff --git a/zup-landingpage/images/logo.png b/zup-landingpage/images/logo.png new file mode 100644 index 0000000..32cf95b Binary files /dev/null and b/zup-landingpage/images/logo.png differ diff --git a/zup-landingpage/images/participe_btn_appstore_hover@2x.png b/zup-landingpage/images/participe_btn_appstore_hover@2x.png new file mode 100644 index 0000000..e06c562 Binary files /dev/null and b/zup-landingpage/images/participe_btn_appstore_hover@2x.png differ diff --git a/zup-landingpage/images/participe_btn_appstore_normal@2x.png b/zup-landingpage/images/participe_btn_appstore_normal@2x.png new file mode 100644 index 0000000..fd8d4c3 Binary files /dev/null and b/zup-landingpage/images/participe_btn_appstore_normal@2x.png differ diff --git a/zup-landingpage/images/participe_btn_cadastrese_completo_hover@2x.png b/zup-landingpage/images/participe_btn_cadastrese_completo_hover@2x.png new file mode 100644 index 0000000..f405d04 Binary files /dev/null and b/zup-landingpage/images/participe_btn_cadastrese_completo_hover@2x.png differ diff --git a/zup-landingpage/images/participe_btn_cadastrese_completo_normal@2x.png b/zup-landingpage/images/participe_btn_cadastrese_completo_normal@2x.png new file mode 100644 index 0000000..dc10774 Binary files /dev/null and b/zup-landingpage/images/participe_btn_cadastrese_completo_normal@2x.png differ diff --git a/zup-landingpage/images/participe_btn_playstore_hover@2x.png b/zup-landingpage/images/participe_btn_playstore_hover@2x.png new file mode 100644 index 0000000..e0b9833 Binary files /dev/null and b/zup-landingpage/images/participe_btn_playstore_hover@2x.png differ diff --git a/zup-landingpage/images/participe_btn_playstore_normal@2x.png b/zup-landingpage/images/participe_btn_playstore_normal@2x.png new file mode 100644 index 0000000..6ee77d8 Binary files /dev/null and b/zup-landingpage/images/participe_btn_playstore_normal@2x.png differ diff --git a/zup-landingpage/images/participe_devices@2x.jpg b/zup-landingpage/images/participe_devices@2x.jpg new file mode 100644 index 0000000..dff844b Binary files /dev/null and b/zup-landingpage/images/participe_devices@2x.jpg differ diff --git a/zup-landingpage/index.html b/zup-landingpage/index.html new file mode 100644 index 0000000..572501f --- /dev/null +++ b/zup-landingpage/index.html @@ -0,0 +1,203 @@ + + + + + PAGE_TITLE + + + + + + + + + + +
+
+
+
+ PAGE_TITLE +
+
+
+
+ + + + + +
+
+
+
+
+
+

Participe da gestão da sua cidade

+

Acesse o aplicativo APPLICATION_NAME e colabore com a Prefeitura de CITY_NAME a tornar sua administração cada vez mais inteligente e participativa.

+
+ + + +
+
+
+
+
+
+
+ +
+
+
+
+

Faça parte também dessa transformação!

+ + +
+
+
+
+ +
+
+
+
+

Como funciona

+

O aplicativo APPLICATION_NAME é um meio de comunicação entre você, cidadão, e a prefeitura de sua cidade.
Do celular, tablet ou computador, você pode contribuir na gestão da sua cidade fazendo solicitações e acompanhando o andamento dos serviços solicitados por você e por outras pessoas.

+
+ +

1. Solicite

+

Escolha o tipo de solicitação que deseja fazer, indique o local no mapa, envie fotos e escreva o
que está acontecendo.

+
+
+ +

2. Acompanhe

+

Receba atualizações por email do andamento da sua
solicitação.

+
+
+ +

3. Avalie o resultado

+

Após concluído o serviço, você pode indicar o que achou do
resultado.

+
+
+
+
+
+ +
+
+
+
+

Estatísticas

+

Veja como andam as solicitações feitas no último mês.

+
+
+ +

Carregando estatísticas...

+
+
+ +
+
+
+
+
+

+

Solicitações
resolvidas

+
+
+
+
+
+
+
+

+

Solicitações em andamento

+
+
+
+
+
+
+
+

+

Solicitações em aberto

+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+

APPLICATION_NAME é um software livre desenvolvido pelo

+ Instituto TIM +
+
+
+
+
+ + + + + + + + + + + + + diff --git a/zup-landingpage/robots.txt b/zup-landingpage/robots.txt new file mode 100644 index 0000000..ee2cc21 --- /dev/null +++ b/zup-landingpage/robots.txt @@ -0,0 +1,3 @@ +# robotstxt.org/ + +User-agent: * diff --git a/zup-landingpage/scripts/main.js b/zup-landingpage/scripts/main.js new file mode 100644 index 0000000..8b67b1d --- /dev/null +++ b/zup-landingpage/scripts/main.js @@ -0,0 +1 @@ +$(function(){function t(){$.ajax({url:o+"feature_flags",type:"GET",cache:!1,success:function(t){$.each(t.flags,function(t,a){return"stats"==a.name?void(c=String(a.status_name)):void 0}),"enabled"==c?(l=1,a()):$("#estatisticas, li.stats").hide()}})}function a(){$(".estatisticas").fadeOut(300),console.log("getting data"),$.ajax({url:o+"reports/stats.json",type:"GET",cache:!1,success:function(t){for(var a=0,n=0,r=0,i=0,o=0;o .stats > h1").html(r),$(".pie.andamento").each(function(){var t=$(this),a=e(c);s(t,a,"#ffac2d")}),$(".stats-wrapper.andamento > .stats > h1").html(a),$(".pie.aberto").each(function(){var t=$(this),a=e(l);s(t,a,"#ff6049")}),$(".stats-wrapper.aberto > .stats > h1").html(n),$(".loading-wrapper").fadeOut(500,function(){$(".estatisticas").fadeIn(300)})}})}$.imgpreload(["/images/participe_btn_appstore_hover@2x.png","/images/participe_btn_playstore_hover@2x.png","/images/participe_btn_cadastrese_completo_hover@2x.png"]);var e=function(t){t=t>=100?100:t;var a=3.6*t;return a},s=function(t,a,e){180>=a?(a=90+a,t.css("background","linear-gradient(90deg, #e3eaee 50%, transparent 50%), linear-gradient("+a+"deg, "+e+" 50%, #e3eaee 50%)")):(a-=90,t.css("background","linear-gradient(-90deg, "+e+" 50%, transparent 50%), linear-gradient("+a+"deg, #e3eaee 50%, "+e+" 50%)"))};$(".nav a[href*=#]:not([href=#])").click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=$(this.hash);if(t=t.length?t:$("[name="+this.hash.slice(1)+"]"),t.length)return $("html, body").animate({scrollTop:t.offset().top},450),!1}});var n=$(document),r=$("nav, #navPlaceholder"),i="hasScrolled";n.scroll(function(){r.toggleClass(i,n.scrollTop()>=$("header").outerHeight())});var o="API_URL";"/"!==o.charAt(o.length-1)&&(o+="/");var c,l;t()}); \ No newline at end of file diff --git a/zup-landingpage/scripts/plugins.js b/zup-landingpage/scripts/plugins.js new file mode 100644 index 0000000..66e6084 --- /dev/null +++ b/zup-landingpage/scripts/plugins.js @@ -0,0 +1 @@ ++function(t){"use strict";function e(e,s){return this.each(function(){var o=t(this),n=o.data("bs.modal"),r=t.extend({},i.DEFAULTS,o.data(),"object"==typeof e&&e);n||o.data("bs.modal",n=new i(this,r)),"string"==typeof e?n[e](s):r.show&&n.show(s)})}var i=function(e,i){this.options=i,this.$body=t(document.body),this.$element=t(e),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,t.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};i.VERSION="3.3.7",i.TRANSITION_DURATION=300,i.BACKDROP_TRANSITION_DURATION=150,i.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},i.prototype.toggle=function(t){return this.isShown?this.hide():this.show(t)},i.prototype.show=function(e){var s=this,o=t.Event("show.bs.modal",{relatedTarget:e});this.$element.trigger(o),this.isShown||o.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',t.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){s.$element.one("mouseup.dismiss.bs.modal",function(e){t(e.target).is(s.$element)&&(s.ignoreBackdropClick=!0)})}),this.backdrop(function(){var o=t.support.transition&&s.$element.hasClass("fade");s.$element.parent().length||s.$element.appendTo(s.$body),s.$element.show().scrollTop(0),s.adjustDialog(),o&&s.$element[0].offsetWidth,s.$element.addClass("in"),s.enforceFocus();var n=t.Event("shown.bs.modal",{relatedTarget:e});o?s.$dialog.one("bsTransitionEnd",function(){s.$element.trigger("focus").trigger(n)}).emulateTransitionEnd(i.TRANSITION_DURATION):s.$element.trigger("focus").trigger(n)}))},i.prototype.hide=function(e){e&&e.preventDefault(),e=t.Event("hide.bs.modal"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),t(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),t.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",t.proxy(this.hideModal,this)).emulateTransitionEnd(i.TRANSITION_DURATION):this.hideModal())},i.prototype.enforceFocus=function(){t(document).off("focusin.bs.modal").on("focusin.bs.modal",t.proxy(function(t){document===t.target||this.$element[0]===t.target||this.$element.has(t.target).length||this.$element.trigger("focus")},this))},i.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",t.proxy(function(t){27==t.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},i.prototype.resize=function(){this.isShown?t(window).on("resize.bs.modal",t.proxy(this.handleUpdate,this)):t(window).off("resize.bs.modal")},i.prototype.hideModal=function(){var t=this;this.$element.hide(),this.backdrop(function(){t.$body.removeClass("modal-open"),t.resetAdjustments(),t.resetScrollbar(),t.$element.trigger("hidden.bs.modal")})},i.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},i.prototype.backdrop=function(e){var s=this,o=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var n=t.support.transition&&o;if(this.$backdrop=t(document.createElement("div")).addClass("modal-backdrop "+o).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",t.proxy(function(t){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(t.target===t.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),n&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!e)return;n?this.$backdrop.one("bsTransitionEnd",e).emulateTransitionEnd(i.BACKDROP_TRANSITION_DURATION):e()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var r=function(){s.removeBackdrop(),e&&e()};t.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",r).emulateTransitionEnd(i.BACKDROP_TRANSITION_DURATION):r()}else e&&e()},i.prototype.handleUpdate=function(){this.adjustDialog()},i.prototype.adjustDialog=function(){var t=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},i.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},i.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",t.proxy(this.process,this)),this.refresh(),this.process()}function i(i){return this.each(function(){var s=t(this),o=s.data("bs.scrollspy"),n="object"==typeof i&&i;o||s.data("bs.scrollspy",o=new e(this,n)),"string"==typeof i&&o[i]()})}e.VERSION="3.3.7",e.DEFAULTS={offset:10},e.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},e.prototype.refresh=function(){var e=this,i="offset",s=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),t.isWindow(this.$scrollElement[0])||(i="position",s=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var e=t(this),o=e.data("target")||e.attr("href"),n=/^#./.test(o)&&t(o);return n&&n.length&&n.is(":visible")&&[[n[i]().top+s,o]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){e.offsets.push(this[0]),e.targets.push(this[1])})},e.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),s=this.options.offset+i-this.$scrollElement.height(),o=this.offsets,n=this.targets,r=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),e>=s)return r!=(t=n[n.length-1])&&this.activate(t);if(r&&e=o[t]&&(void 0===o[t+1]||e=e.length&&i.all instanceof Function&&i.all.call(s),t(this).unbind("load error")}),r.src=a})},t.fn.imgpreload=function(e){return t.imgpreload(this,e),this},t.fn.imgpreload.defaults={each:null,all:null}}(jQuery); \ No newline at end of file diff --git a/zup-landingpage/scripts/vendor.js b/zup-landingpage/scripts/vendor.js new file mode 100644 index 0000000..3cae0e0 --- /dev/null +++ b/zup-landingpage/scripts/vendor.js @@ -0,0 +1,4 @@ +window.Modernizr=function(e,t,n){function r(e){b.cssText=e}function i(e,t){return r(C.join(e+";")+(t||""))}function o(e,t){return typeof e===t}function a(e,t){return!!~(""+e).indexOf(t)}function s(e,t){for(var r in e){var i=e[r];if(!a(i,"-")&&b[i]!==n)return"pfx"==t?i:!0}return!1}function u(e,t,r){for(var i in e){var a=t[e[i]];if(a!==n)return r===!1?e[i]:o(a,"function")?a.bind(r||t):a}return!1}function l(e,t,n){var r=e.charAt(0).toUpperCase()+e.slice(1),i=(e+" "+N.join(r+" ")+r).split(" ");return o(t,"string")||o(t,"undefined")?s(i,t):(i=(e+" "+k.join(r+" ")+r).split(" "),u(i,t,n))}function c(){h.input=function(n){for(var r=0,i=n.length;i>r;r++)D[n[r]]=!!(n[r]in x);return D.list&&(D.list=!(!t.createElement("datalist")||!e.HTMLDataListElement)),D}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),h.inputtypes=function(e){for(var r,i,o,a=0,s=e.length;s>a;a++)x.setAttribute("type",i=e[a]),r="text"!==x.type,r&&(x.value=w,x.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(i)&&x.style.WebkitAppearance!==n?(g.appendChild(x),o=t.defaultView,r=o.getComputedStyle&&"textfield"!==o.getComputedStyle(x,null).WebkitAppearance&&0!==x.offsetHeight,g.removeChild(x)):/^(search|tel)$/.test(i)||(r=/^(url|email)$/.test(i)?x.checkValidity&&x.checkValidity()===!1:x.value!=w)),j[e[a]]=!!r;return j}("search tel url email datetime date month week time datetime-local number range color".split(" "))}var d,f,p="2.6.3",h={},m=!0,g=t.documentElement,v="modernizr",y=t.createElement(v),b=y.style,x=t.createElement("input"),w=":)",T={}.toString,C=" -webkit- -moz- -o- -ms- ".split(" "),E="Webkit Moz O ms",N=E.split(" "),k=E.toLowerCase().split(" "),S={svg:"http://www.w3.org/2000/svg"},A={},j={},D={},L=[],H=L.slice,M=function(e,n,r,i){var o,a,s,u,l=t.createElement("div"),c=t.body,d=c||t.createElement("body");if(parseInt(r,10))for(;r--;)s=t.createElement("div"),s.id=i?i[r]:v+(r+1),l.appendChild(s);return o=["­",'"].join(""),l.id=v,(c?l:d).innerHTML+=o,d.appendChild(l),c||(d.style.background="",d.style.overflow="hidden",u=g.style.overflow,g.style.overflow="hidden",g.appendChild(d)),a=n(l,e),c?l.parentNode.removeChild(l):(d.parentNode.removeChild(d),g.style.overflow=u),!!a},q=function(t){var n=e.matchMedia||e.msMatchMedia;if(n)return n(t).matches;var r;return M("@media "+t+" { #"+v+" { position: absolute; } }",function(t){r="absolute"==(e.getComputedStyle?getComputedStyle(t,null):t.currentStyle).position}),r},_=function(){function e(e,i){i=i||t.createElement(r[e]||"div"),e="on"+e;var a=e in i;return a||(i.setAttribute||(i=t.createElement("div")),i.setAttribute&&i.removeAttribute&&(i.setAttribute(e,""),a=o(i[e],"function"),o(i[e],"undefined")||(i[e]=n),i.removeAttribute(e))),i=null,a}var r={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return e}(),F={}.hasOwnProperty;f=o(F,"undefined")||o(F.call,"undefined")?function(e,t){return t in e&&o(e.constructor.prototype[t],"undefined")}:function(e,t){return F.call(e,t)},Function.prototype.bind||(Function.prototype.bind=function(e){var t=this;if("function"!=typeof t)throw new TypeError;var n=H.call(arguments,1),r=function(){if(this instanceof r){var i=function(){};i.prototype=t.prototype;var o=new i,a=t.apply(o,n.concat(H.call(arguments)));return Object(a)===a?a:o}return t.apply(e,n.concat(H.call(arguments)))};return r}),A.flexbox=function(){return l("flexWrap")},A.flexboxlegacy=function(){return l("boxDirection")},A.canvas=function(){var e=t.createElement("canvas");return!(!e.getContext||!e.getContext("2d"))},A.canvastext=function(){return!(!h.canvas||!o(t.createElement("canvas").getContext("2d").fillText,"function"))},A.webgl=function(){return!!e.WebGLRenderingContext},A.touch=function(){var n;return"ontouchstart"in e||e.DocumentTouch&&t instanceof DocumentTouch?n=!0:M(["@media (",C.join("touch-enabled),("),v,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(e){n=9===e.offsetTop}),n},A.geolocation=function(){return"geolocation"in navigator},A.postmessage=function(){return!!e.postMessage},A.websqldatabase=function(){return!!e.openDatabase},A.indexedDB=function(){return!!l("indexedDB",e)},A.hashchange=function(){return _("hashchange",e)&&(t.documentMode===n||t.documentMode>7)},A.history=function(){return!(!e.history||!history.pushState)},A.draganddrop=function(){var e=t.createElement("div");return"draggable"in e||"ondragstart"in e&&"ondrop"in e},A.websockets=function(){return"WebSocket"in e||"MozWebSocket"in e},A.rgba=function(){return r("background-color:rgba(150,255,150,.5)"),a(b.backgroundColor,"rgba")},A.hsla=function(){return r("background-color:hsla(120,40%,100%,.5)"),a(b.backgroundColor,"rgba")||a(b.backgroundColor,"hsla")},A.multiplebgs=function(){return r("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(b.background)},A.backgroundsize=function(){return l("backgroundSize")},A.borderimage=function(){return l("borderImage")},A.borderradius=function(){return l("borderRadius")},A.boxshadow=function(){return l("boxShadow")},A.textshadow=function(){return""===t.createElement("div").style.textShadow},A.opacity=function(){return i("opacity:.55"),/^0.55$/.test(b.opacity)},A.cssanimations=function(){return l("animationName")},A.csscolumns=function(){return l("columnCount")},A.cssgradients=function(){var e="background-image:",t="gradient(linear,left top,right bottom,from(#9f9),to(white));",n="linear-gradient(left top,#9f9, white);";return r((e+"-webkit- ".split(" ").join(t+e)+C.join(n+e)).slice(0,-e.length)),a(b.backgroundImage,"gradient")},A.cssreflections=function(){return l("boxReflect")},A.csstransforms=function(){return!!l("transform")},A.csstransforms3d=function(){var e=!!l("perspective");return e&&"webkitPerspective"in g.style&&M("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(t,n){e=9===t.offsetLeft&&3===t.offsetHeight}),e},A.csstransitions=function(){return l("transition")},A.fontface=function(){var e;return M('@font-face {font-family:"font";src:url("https://")}',function(n,r){var i=t.getElementById("smodernizr"),o=i.sheet||i.styleSheet,a=o?o.cssRules&&o.cssRules[0]?o.cssRules[0].cssText:o.cssText||"":"";e=/src/i.test(a)&&0===a.indexOf(r.split(" ")[0])}),e},A.generatedcontent=function(){var e;return M(["#",v,"{font:0/0 a}#",v,':after{content:"',w,'";visibility:hidden;font:3px/1 a}'].join(""),function(t){e=t.offsetHeight>=3}),e},A.video=function(){var e=t.createElement("video"),n=!1;try{(n=!!e.canPlayType)&&(n=new Boolean(n),n.ogg=e.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),n.h264=e.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),n.webm=e.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,""))}catch(r){}return n},A.audio=function(){var e=t.createElement("audio"),n=!1;try{(n=!!e.canPlayType)&&(n=new Boolean(n),n.ogg=e.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),n.mp3=e.canPlayType("audio/mpeg;").replace(/^no$/,""),n.wav=e.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),n.m4a=(e.canPlayType("audio/x-m4a;")||e.canPlayType("audio/aac;")).replace(/^no$/,""))}catch(r){}return n},A.localstorage=function(){try{return localStorage.setItem(v,v),localStorage.removeItem(v),!0}catch(e){return!1}},A.sessionstorage=function(){try{return sessionStorage.setItem(v,v),sessionStorage.removeItem(v),!0}catch(e){return!1}},A.webworkers=function(){return!!e.Worker},A.applicationcache=function(){return!!e.applicationCache},A.svg=function(){return!!t.createElementNS&&!!t.createElementNS(S.svg,"svg").createSVGRect},A.inlinesvg=function(){var e=t.createElement("div");return e.innerHTML="",(e.firstChild&&e.firstChild.namespaceURI)==S.svg},A.smil=function(){return!!t.createElementNS&&/SVGAnimate/.test(T.call(t.createElementNS(S.svg,"animate")))},A.svgclippaths=function(){return!!t.createElementNS&&/SVGClipPath/.test(T.call(t.createElementNS(S.svg,"clipPath")))};for(var O in A)f(A,O)&&(d=O.toLowerCase(),h[d]=A[O](),L.push((h[d]?"":"no-")+d));return h.input||c(),h.addTest=function(e,t){if("object"==typeof e)for(var r in e)f(e,r)&&h.addTest(r,e[r]);else{if(e=e.toLowerCase(),h[e]!==n)return h;t="function"==typeof t?t():t,"undefined"!=typeof m&&m&&(g.className+=" "+(t?"":"no-")+e),h[e]=t}return h},r(""),y=x=null,function(e,t){function n(e,t){var n=e.createElement("p"),r=e.getElementsByTagName("head")[0]||e.documentElement;return n.innerHTML="x",r.insertBefore(n.lastChild,r.firstChild)}function r(){var e=v.elements;return"string"==typeof e?e.split(" "):e}function i(e){var t=g[e[h]];return t||(t={},m++,e[h]=m,g[m]=t),t}function o(e,n,r){if(n||(n=t),c)return n.createElement(e);r||(r=i(n));var o;return o=r.cache[e]?r.cache[e].cloneNode():p.test(e)?(r.cache[e]=r.createElem(e)).cloneNode():r.createElem(e),o.canHaveChildren&&!f.test(e)?r.frag.appendChild(o):o}function a(e,n){if(e||(e=t),c)return e.createDocumentFragment();n=n||i(e);for(var o=n.frag.cloneNode(),a=0,s=r(),u=s.length;u>a;a++)o.createElement(s[a]);return o}function s(e,t){t.cache||(t.cache={},t.createElem=e.createElement,t.createFrag=e.createDocumentFragment,t.frag=t.createFrag()),e.createElement=function(n){return v.shivMethods?o(n,e,t):t.createElem(n)},e.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+r().join().replace(/\w+/g,function(e){return t.createElem(e),t.frag.createElement(e),'c("'+e+'")'})+");return n}")(v,t.frag)}function u(e){e||(e=t);var r=i(e);return!v.shivCSS||l||r.hasCSS||(r.hasCSS=!!n(e,"article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}")),c||s(e,r),e}var l,c,d=e.html5||{},f=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,h="_html5shiv",m=0,g={};!function(){try{var e=t.createElement("a");e.innerHTML="",l="hidden"in e,c=1==e.childNodes.length||function(){t.createElement("a");var e=t.createDocumentFragment();return"undefined"==typeof e.cloneNode||"undefined"==typeof e.createDocumentFragment||"undefined"==typeof e.createElement}()}catch(n){l=!0,c=!0}}();var v={elements:d.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:d.shivCSS!==!1,supportsUnknownElements:c,shivMethods:d.shivMethods!==!1,type:"default",shivDocument:u,createElement:o,createDocumentFragment:a};e.html5=v,u(t)}(this,t),h._version=p,h._prefixes=C,h._domPrefixes=k,h._cssomPrefixes=N,h.mq=q,h.hasEvent=_,h.testProp=function(e){return s([e])},h.testAllProps=l,h.testStyles=M,h.prefixed=function(e,t,n){return t?l(e,t,n):l(e,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(m?" js "+L.join(" "):""),h}(this,this.document),function(e,t){"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){function n(e){var t="length"in e&&e.length,n=ie.type(e);return"function"===n||ie.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e}function r(e,t,n){if(ie.isFunction(t))return ie.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return ie.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(fe.test(t))return ie.filter(t,e,n);t=ie.filter(t,e)}return ie.grep(e,function(e){return ie.inArray(e,t)>=0!==n})}function i(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function o(e){var t=xe[e]={};return ie.each(e.match(be)||[],function(e,n){t[n]=!0}),t}function a(){he.addEventListener?(he.removeEventListener("DOMContentLoaded",s,!1),e.removeEventListener("load",s,!1)):(he.detachEvent("onreadystatechange",s),e.detachEvent("onload",s))}function s(){(he.addEventListener||"load"===event.type||"complete"===he.readyState)&&(a(),ie.ready())}function u(e,t,n){if(void 0===n&&1===e.nodeType){var r="data-"+t.replace(Ne,"-$1").toLowerCase();if(n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:Ee.test(n)?ie.parseJSON(n):n}catch(i){}ie.data(e,t,n)}else n=void 0}return n}function l(e){var t;for(t in e)if(("data"!==t||!ie.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function c(e,t,n,r){if(ie.acceptData(e)){var i,o,a=ie.expando,s=e.nodeType,u=s?ie.cache:e,l=s?e[a]:e[a]&&a;if(l&&u[l]&&(r||u[l].data)||void 0!==n||"string"!=typeof t)return l||(l=s?e[a]=G.pop()||ie.guid++:a),u[l]||(u[l]=s?{}:{toJSON:ie.noop}),("object"==typeof t||"function"==typeof t)&&(r?u[l]=ie.extend(u[l],t):u[l].data=ie.extend(u[l].data,t)),o=u[l],r||(o.data||(o.data={}),o=o.data),void 0!==n&&(o[ie.camelCase(t)]=n),"string"==typeof t?(i=o[t],null==i&&(i=o[ie.camelCase(t)])):i=o,i}}function d(e,t,n){if(ie.acceptData(e)){var r,i,o=e.nodeType,a=o?ie.cache:e,s=o?e[ie.expando]:ie.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){ie.isArray(t)?t=t.concat(ie.map(t,ie.camelCase)):t in r?t=[t]:(t=ie.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;for(;i--;)delete r[t[i]];if(n?!l(r):!ie.isEmptyObject(r))return}(n||(delete a[s].data,l(a[s])))&&(o?ie.cleanData([e],!0):ne.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}function f(){return!0}function p(){return!1}function h(){try{return he.activeElement}catch(e){}}function m(e){var t=Fe.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function g(e,t){var n,r,i=0,o=typeof e.getElementsByTagName!==Ce?e.getElementsByTagName(t||"*"):typeof e.querySelectorAll!==Ce?e.querySelectorAll(t||"*"):void 0;if(!o)for(o=[],n=e.childNodes||e;null!=(r=n[i]);i++)!t||ie.nodeName(r,t)?o.push(r):ie.merge(o,g(r,t));return void 0===t||t&&ie.nodeName(e,t)?ie.merge([e],o):o}function v(e){De.test(e.type)&&(e.defaultChecked=e.checked)}function y(e,t){return ie.nodeName(e,"table")&&ie.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function b(e){return e.type=(null!==ie.find.attr(e,"type"))+"/"+e.type,e}function x(e){var t=Ue.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function w(e,t){for(var n,r=0;null!=(n=e[r]);r++)ie._data(n,"globalEval",!t||ie._data(t[r],"globalEval"))}function T(e,t){if(1===t.nodeType&&ie.hasData(e)){var n,r,i,o=ie._data(e),a=ie._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)ie.event.add(t,n,s[n][r])}a.data&&(a.data=ie.extend({},a.data))}}function C(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!ne.noCloneEvent&&t[ie.expando]){i=ie._data(t);for(r in i.events)ie.removeEvent(t,r,i.handle);t.removeAttribute(ie.expando)}"script"===n&&t.text!==e.text?(b(t).text=e.text,x(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),ne.html5Clone&&e.innerHTML&&!ie.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&De.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function E(t,n){var r,i=ie(n.createElement(t)).appendTo(n.body),o=e.getDefaultComputedStyle&&(r=e.getDefaultComputedStyle(i[0]))?r.display:ie.css(i[0],"display");return i.detach(),o}function N(e){var t=he,n=Ze[e];return n||(n=E(e,t),"none"!==n&&n||(Ke=(Ke||ie("');return a.join("")})}},fileButton:function(b,d,c){var e=this;if(!(arguments.length<3)){a.call(this,d);if(d.validate)this.validate=d.validate;var g=CKEDITOR.tools.extend({},d),f=g.onClick;g.className=(g.className?g.className+" ":"")+"cke_dialog_ui_button";g.onClick=function(a){var c=d["for"];if(!f||f.call(this,a)!==false){b.getContentElement(c[0],c[1]).submit();this.disable()}};b.on("load",function(){b.getContentElement(d["for"][0], +d["for"][1])._.buttons.push(e)});CKEDITOR.ui.dialog.button.call(this,b,g,c)}},html:function(){var a=/^\s*<[\w:]+\s+([^>]*)?>/,b=/^(\s*<[\w:]+(?:\s+[^>]*)?)((?:.|\r|\n)+)$/,c=/\/$/;return function(e,g,f){if(!(arguments.length<3)){var i=[],k=g.html;k.charAt(0)!="<"&&(k=""+k+"");var r=g.focus;if(r){var p=this.focus;this.focus=function(){(typeof r=="function"?r:p).call(this);this.fire("focus")};if(g.isFocusable)this.isFocusable=this.isFocusable;this.keyboardFocusable=true}CKEDITOR.ui.dialog.uiElement.call(this, +e,g,i,"span",null,null,"");i=i.join("").match(a);k=k.match(b)||["","",""];if(c.test(k[1])){k[1]=k[1].slice(0,-1);k[2]="/"+k[2]}f.push([k[1]," ",i[1]||"",k[2]].join(""))}}}(),fieldset:function(a,b,c,e,g){var f=g.label;this._={children:b};CKEDITOR.ui.dialog.uiElement.call(this,a,g,e,"fieldset",null,null,function(){var a=[];f&&a.push(""+f+"");for(var b=0;b0;)a.remove(0);return this},keyboardFocusable:true}, +c,true);CKEDITOR.ui.dialog.checkbox.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{getInputElement:function(){return this._.checkbox.getElement()},setValue:function(a,b){this.getInputElement().$.checked=a;!b&&this.fire("change",{value:a})},getValue:function(){return this.getInputElement().$.checked},accessKeyUp:function(){this.setValue(!this.getValue())},eventProcessors:{onChange:function(a,b){if(!CKEDITOR.env.ie||CKEDITOR.env.version>8)return g.onChange.apply(this,arguments);a.on("load", +function(){var a=this._.checkbox.getElement();a.on("propertychange",function(b){b=b.data.$;b.propertyName=="checked"&&this.fire("change",{value:a.$.checked})},this)},this);this.on("change",b);return null}},keyboardFocusable:true},c,true);CKEDITOR.ui.dialog.radio.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{setValue:function(a,b){for(var c=this._.children,e,g=0;g0?new CKEDITOR.dom.element(a.$.forms[0].elements[0]):this.getElement()},submit:function(){this.getInputElement().getParent().$.submit();return this}, +getAction:function(){return this.getInputElement().getParent().$.action},registerEvents:function(a){var b=/^on([A-Z]\w+)/,c,e=function(a,b,d,c){a.on("formLoaded",function(){a.getInputElement().on(d,c,a)})},g;for(g in a)if(c=g.match(b))this.eventProcessors[g]?this.eventProcessors[g].call(this,this._.dialog,a[g]):e(this,this._.dialog,c[1].toLowerCase(),a[g]);return this},reset:function(){function a(){c.$.open();var j="";e.size&&(j=e.size-(CKEDITOR.env.ie?7:0));var t=b.frameId+"_input";c.$.write(['','
+ ``` + +- `tabReplace` and `useBR` that were used in different places are also unified + into the global options object and are to be set using `configure(options)`. + This function is documented in our [API docs][]. Also note that these + parameters are gone from `highlightBlock` and `fixMarkup` which are now also + rely on `configure`. + +- We removed public-facing (though undocumented) object `hljs.LANGUAGES` which + was used to register languages with the library in favor of two new methods: + `registerLanguage` and `getLanguage`. Both are documented in our [API docs][]. + +- Result returned from `highlight` and `highlightAuto` no longer contains two + separate attributes contributing to relevance score, `relevance` and + `keyword_count`. They are now unified in `relevance`. + +Another technically compatible change that nonetheless might need attention: + +- The structure of the NPM package was refactored, so if you had installed it + locally, you'll have to update your paths. The usual `require('highlight.js')` + works as before. This is contributed by [Dmitry Smolin][]. + +New features: + +- Languages now can be recognized by multiple names like "js" for JavaScript or + "html" for, well, HTML (which earlier insisted on calling it "xml"). These + aliases can be specified in the class attribute of the code container in your + HTML as well as in various API calls. For now there are only a few very common + aliases but we'll expand it in the future. All of them are listed in the + [class reference][]. + +- Language detection can now be restricted to a subset of languages relevant in + a given context — a web page or even a single highlighting call. This is + especially useful for node.js build that includes all the known languages. + Another example is a StackOverflow-style site where users specify languages + as tags rather than in the markdown-formatted code snippets. This is + documented in the [API reference][] (see methods `highlightAuto` and + `configure`). + +- Language definition syntax streamlined with [variants][] and + [beginKeywords][]. + +New languages and styles: + +- *Oxygene* by [Carlo Kok][] +- *Mathematica* by [Daniel Kvasnička][] +- *Autohotkey* by [Seongwon Lee][] +- *Atelier* family of styles in 10 variants by [Bram de Haan][] +- *Paraíso* styles by [Jan T. Sott][] + +Miscelleanous improvements: + +- Highlighting `=>` prompts in Clojure. +- [Jeremy Hull][] fixed a lot of styles for consistency. +- Finally, highlighting PHP and HTML [mixed in peculiar ways][php-html]. +- Objective C and C# now properly highlight titles in method definition. +- Big overhaul of relevance counting for a number of languages. Please do report + bugs about mis-detection of non-trivial code snippets! + +[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html +[api docs]: http://highlightjs.readthedocs.org/en/latest/api.html +[variants]: https://groups.google.com/d/topic/highlightjs/VoGC9-1p5vk/discussion +[beginKeywords]: https://github.com/isagalaev/highlight.js/commit/6c7fdea002eb3949577a85b3f7930137c7c3038d +[php-html]: https://twitter.com/highlightjs/status/408890903017689088 + +[Carlo Kok]: https://github.com/carlokok +[Bram de Haan]: https://github.com/atelierbram +[Daniel Kvasnička]: https://github.com/dkvasnicka +[Dmitry Smolin]: https://github.com/dimsmol +[Jeremy Hull]: https://github.com/sourrust +[Seongwon Lee]: https://github.com/dlimpid +[Jan T. Sott]: https://github.com/idleberg + + +## Version 7.5 + +A catch-up release dealing with some of the accumulated contributions. This one +is probably will be the last before the 8.0 which will be slightly backwards +incompatible regarding some advanced use-cases. + +One outstanding change in this version is the addition of 6 languages to the +[hosted script][d]: Markdown, ObjectiveC, CoffeeScript, Apache, Nginx and +Makefile. It now weighs about 6K more but we're going to keep it under 30K. + +New languages: + +- OCaml by [Mehdi Dogguy][mehdid] and [Nicolas Braud-Santoni][nbraud] +- [LiveCode Server][lcs] by [Ralf Bitter][revig] +- Scilab by [Sylvestre Ledru][sylvestre] +- basic support for Makefile by [Ivan Sagalaev][isagalaev] + +Improvements: + +- Ruby's got support for characters like `?A`, `?1`, `?\012` etc. and `%r{..}` + regexps. +- Clojure now allows a function call in the beginning of s-expressions + `(($filter "myCount") (arr 1 2 3 4 5))`. +- Haskell's got new keywords and now recognizes more things like pragmas, + preprocessors, modules, containers, FFIs etc. Thanks to [Zena Treep][treep] + for the implementation and to [Jeremy Hull][sourrust] for guiding it. +- Miscelleanous fixes in PHP, Brainfuck, SCSS, Asciidoc, CMake, Python and F#. + +[mehdid]: https://github.com/mehdid +[nbraud]: https://github.com/nbraud +[revig]: https://github.com/revig +[lcs]: http://livecode.com/developers/guides/server/ +[sylvestre]: https://github.com/sylvestre +[isagalaev]: https://github.com/isagalaev +[treep]: https://github.com/treep +[sourrust]: https://github.com/sourrust +[d]: http://highlightjs.org/download/ + + +## New core developers + +The latest long period of almost complete inactivity in the project coincided +with growing interest to it led to a decision that now seems completely obvious: +we need more core developers. + +So without further ado let me welcome to the core team two long-time +contributors: [Jeremy Hull][] and [Oleg +Efimov][]. + +Hope now we'll be able to work through stuff faster! + +P.S. The historical commit is [here][1] for the record. + +[Jeremy Hull]: https://github.com/sourrust +[Oleg Efimov]: https://github.com/sannis +[1]: https://github.com/isagalaev/highlight.js/commit/f3056941bda56d2b72276b97bc0dd5f230f2473f + + +## Version 7.4 + +This long overdue version is a snapshot of the current source tree with all the +changes that happened during the past year. Sorry for taking so long! + +Along with the changes in code highlight.js has finally got its new home at +, moving from its craddle on Software Maniacs which it +outgrew a long time ago. Be sure to report any bugs about the site to +. + +On to what's new… + +New languages: + +- Handlebars templates by [Robin Ward][] +- Oracle Rules Language by [Jason Jacobson][] +- F# by [Joans Follesø][] +- AsciiDoc and Haml by [Dan Allen][] +- Lasso by [Eric Knibbe][] +- SCSS by [Kurt Emch][] +- VB.NET by [Poren Chiang][] +- Mizar by [Kelley van Evert][] + +[Robin Ward]: https://github.com/eviltrout +[Jason Jacobson]: https://github.com/jayce7 +[Joans Follesø]: https://github.com/follesoe +[Dan Allen]: https://github.com/mojavelinux +[Eric Knibbe]: https://github.com/EricFromCanada +[Kurt Emch]: https://github.com/kemch +[Poren Chiang]: https://github.com/rschiang +[Kelley van Evert]: https://github.com/kelleyvanevert + +New style themes: + +- Monokai Sublime by [noformnocontent][] +- Railscasts by [Damien White][] +- Obsidian by [Alexander Marenin][] +- Docco by [Simon Madine][] +- Mono Blue by [Ivan Sagalaev][] (uses a single color hue for everything) +- Foundation by [Dan Allen][] + +[noformnocontent]: http://nn.mit-license.org/ +[Damien White]: https://github.com/visoft +[Alexander Marenin]: https://github.com/ioncreature +[Simon Madine]: https://github.com/thingsinjars +[Ivan Sagalaev]: https://github.com/isagalaev + +Other notable changes: + +- Corrected many corner cases in CSS. +- Dropped Python 2 version of the build tool. +- Implemented building for the AMD format. +- Updated Rust keywords (thanks to [Dmitry Medvinsky][]). +- Literal regexes can now be used in language definitions. +- CoffeeScript highlighting is now significantly more robust and rich due to + input from [Cédric Néhémie][]. + +[Dmitry Medvinsky]: https://github.com/dmedvinsky +[Cédric Néhémie]: https://github.com/abe33 + + +## Version 7.3 + +- Since this version highlight.js no longer works in IE version 8 and older. + It's made it possible to reduce the library size and dramatically improve code + readability and made it easier to maintain. Time to go forward! + +- New languages: AppleScript (by [Nathan Grigg][ng] and [Dr. Drang][dd]) and + Brainfuck (by [Evgeny Stepanischev][bolk]). + +- Improvements to existing languages: + + - interpreter prompt in Python (`>>>` and `...`) + - @-properties and classes in CoffeeScript + - E4X in JavaScript (by [Oleg Efimov][oe]) + - new keywords in Perl (by [Kirk Kimmel][kk]) + - big Ruby syntax update (by [Vasily Polovnyov][vast]) + - small fixes in Bash + +- Also Oleg Efimov did a great job of moving all the docs for language and style + developers and contributors from the old wiki under the source code in the + "docs" directory. Now these docs are nicely presented at + . + +[ng]: https://github.com/nathan11g +[dd]: https://github.com/drdrang +[bolk]: https://github.com/bolknote +[oe]: https://github.com/Sannis +[kk]: https://github.com/kimmel +[vast]: https://github.com/vast + + +## Version 7.2 + +A regular bug-fix release without any significant new features. Enjoy! + + +## Version 7.1 + +A Summer crop: + +- [Marc Fornos][mf] made the definition for Clojure along with the matching + style Rainbow (which, of course, works for other languages too). +- CoffeeScript support continues to improve getting support for regular + expressions. +- Yoshihide Jimbo ported to highlight.js [five Tomorrow styles][tm] from the + [project by Chris Kempson][tm0]. +- Thanks to [Casey Duncun][cd] the library can now be built in the popular + [AMD format][amd]. +- And last but not least, we've got a fair number of correctness and consistency + fixes, including a pretty significant refactoring of Ruby. + +[mf]: https://github.com/mfornos +[tm]: http://jmblog.github.com/color-themes-for-highlightjs/ +[tm0]: https://github.com/ChrisKempson/Tomorrow-Theme +[cd]: https://github.com/caseman +[amd]: http://requirejs.org/docs/whyamd.html + + +## Version 7.0 + +The reason for the new major version update is a global change of keyword syntax +which resulted in the library getting smaller once again. For example, the +hosted build is 2K less than at the previous version while supporting two new +languages. + +Notable changes: + +- The library now works not only in a browser but also with [node.js][]. It is + installable with `npm install highlight.js`. [API][] docs are available on our + wiki. + +- The new unique feature (apparently) among syntax highlighters is highlighting + *HTTP* headers and an arbitrary language in the request body. The most useful + languages here are *XML* and *JSON* both of which highlight.js does support. + Here's [the detailed post][p] about the feature. + +- Two new style themes: a dark "south" *[Pojoaque][]* by Jason Tate and an + emulation of*XCode* IDE by [Angel Olloqui][ao]. + +- Three new languages: *D* by [Aleksandar Ružičić][ar], *R* by [Joe Cheng][jc] + and *GLSL* by [Sergey Tikhomirov][st]. + +- *Nginx* syntax has become a million times smaller and more universal thanks to + remaking it in a more generic manner that doesn't require listing all the + directives in the known universe. + +- Function titles are now highlighted in *PHP*. + +- *Haskell* and *VHDL* were significantly reworked to be more rich and correct + by their respective maintainers [Jeremy Hull][sr] and [Igor Kalnitsky][ik]. + +And last but not least, many bugs have been fixed around correctness and +language detection. + +Overall highlight.js currently supports 51 languages and 20 style themes. + +[node.js]: http://nodejs.org/ +[api]: http://softwaremaniacs.org/wiki/doku.php/highlight.js:api +[p]: http://softwaremaniacs.org/blog/2012/05/10/http-and-json-in-highlight-js/en/ +[pojoaque]: http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html +[ao]: https://github.com/angelolloqui +[ar]: https://github.com/raleksandar +[jc]: https://github.com/jcheng5 +[st]: https://github.com/tikhomirov +[sr]: https://github.com/sourrust +[ik]: https://github.com/ikalnitsky + + +## Version 6.2 + +A lot of things happened in highlight.js since the last version! We've got nine +new contributors, the discussion group came alive, and the main branch on GitHub +now counts more than 350 followers. Here are most significant results coming +from all this activity: + +- 5 (five!) new languages: Rust, ActionScript, CoffeeScript, MatLab and + experimental support for markdown. Thanks go to [Andrey Vlasovskikh][av], + [Alexander Myadzel][am], [Dmytrii Nagirniak][dn], [Oleg Efimov][oe], [Denis + Bardadym][db] and [John Crepezzi][jc]. + +- 2 new style themes: Monokai by [Luigi Maselli][lm] and stylistic imitation of + another well-known highlighter Google Code Prettify by [Aahan Krish][ak]. + +- A vast number of [correctness fixes and code refactorings][log], mostly made + by [Oleg Efimov][oe] and [Evgeny Stepanischev][es]. + +[av]: https://github.com/vlasovskikh +[am]: https://github.com/myadzel +[dn]: https://github.com/dnagir +[oe]: https://github.com/Sannis +[db]: https://github.com/btd +[jc]: https://github.com/seejohnrun +[lm]: http://grigio.org/ +[ak]: https://github.com/geekpanth3r +[es]: https://github.com/bolknote +[log]: https://github.com/isagalaev/highlight.js/commits/ + + +## Version 6.1 — Solarized + +[Jeremy Hull][jh] has implemented my dream feature — a port of [Solarized][] +style theme famous for being based on the intricate color theory to achieve +correct contrast and color perception. It is now available for highlight.js in +both variants — light and dark. + +This version also adds a new original style Arta. Its author pumbur maintains a +[heavily modified fork of highlight.js][pb] on GitHub. + +[jh]: https://github.com/sourrust +[solarized]: http://ethanschoonover.com/solarized +[pb]: https://github.com/pumbur/highlight.js + + +## Version 6.0 + +New major version of the highlighter has been built on a significantly +refactored syntax. Due to this it's even smaller than the previous one while +supporting more languages! + +New languages are: + +- Haskell by [Jeremy Hull][sourrust] +- Erlang in two varieties — module and REPL — made collectively by [Nikolay + Zakharov][desh], [Dmitry Kovega][arhibot] and [Sergey Ignatov][ignatov] +- Objective C by [Valerii Hiora][vhbit] +- Vala by [Antono Vasiljev][antono] +- Go by [Stephan Kountso][steplg] + +[sourrust]: https://github.com/sourrust +[desh]: http://desh.su/ +[arhibot]: https://github.com/arhibot +[ignatov]: https://github.com/ignatov +[vhbit]: https://github.com/vhbit +[antono]: https://github.com/antono +[steplg]: https://github.com/steplg + +Also this version is marginally faster and fixes a number of small long-standing +bugs. + +Developer overview of the new language syntax is available in a [blog post about +recent beta release][beta]. + +[beta]: http://softwaremaniacs.org/blog/2011/04/25/highlight-js-60-beta/en/ + +P.S. New version is not yet available on a Yandex' CDN, so for now you have to +download [your own copy][d]. + +[d]: /soft/highlight/en/download/ + + +## Version 5.14 + +Fixed bugs in HTML/XML detection and relevance introduced in previous +refactoring. + +Also test.html now shows the second best result of language detection by +relevance. + + +## Version 5.13 + +Past weekend began with a couple of simple additions for existing languages but +ended up in a big code refactoring bringing along nice improvements for language +developers. + +### For users + +- Description of C++ has got new keywords from the upcoming [C++ 0x][] standard. +- Description of HTML has got new tags from [HTML 5][]. +- CSS-styles have been unified to use consistent padding and also have lost + pop-outs with names of detected languages. +- [Igor Kalnitsky][ik] has sent two new language descriptions: CMake и VHDL. + +This makes total number of languages supported by highlight.js to reach 35. + +Bug fixes: + +- Custom classes on `
` tags are not being overridden anymore
+- More correct highlighting of code blocks inside non-`
` containers:
+  highlighter now doesn't insist on replacing them with its own container and
+  just replaces the contents.
+- Small fixes in browser compatibility and heuristics.
+
+[c++ 0x]: http://ru.wikipedia.org/wiki/C%2B%2B0x
+[html 5]: http://en.wikipedia.org/wiki/HTML5
+[ik]: http://kalnitsky.org.ua/
+
+### For developers
+
+The most significant change is the ability to include language submodes right
+under `contains` instead of defining explicit named submodes in the main array:
+
+    contains: [
+      'string',
+      'number',
+      {begin: '\\n', end: hljs.IMMEDIATE_RE}
+    ]
+
+This is useful for auxiliary modes needed only in one place to define parsing.
+Note that such modes often don't have `className` and hence won't generate a
+separate `` in the resulting markup. This is similar in effect to
+`noMarkup: true`. All existing languages have been refactored accordingly.
+
+Test file test.html has at last become a real test. Now it not only puts the
+detected language name under the code snippet but also tests if it matches the
+expected one. Test summary is displayed right above all language snippets.
+
+
+## CDN
+
+Fine people at [Yandex][] agreed to host highlight.js on their big fast servers.
+[Link up][l]!
+
+[yandex]: http://yandex.com/
+[l]: http://softwaremaniacs.org/soft/highlight/en/download/
+
+
+## Version 5.10 — "Paris".
+
+Though I'm on a vacation in Paris, I decided to release a new version with a
+couple of small fixes:
+
+- Tomas Vitvar discovered that TAB replacement doesn't always work when used
+  with custom markup in code
+- SQL parsing is even more rigid now and doesn't step over SmallTalk in tests
+
+
+## Version 5.9
+
+A long-awaited version is finally released.
+
+New languages:
+
+- Andrew Fedorov made a definition for Lua
+- a long-time highlight.js contributor [Peter Leonov][pl] made a definition for
+  Nginx config
+- [Vladimir Moskva][vm] made a definition for TeX
+
+[pl]: http://kung-fu-tzu.ru/
+[vm]: http://fulc.ru/
+
+Fixes for existing languages:
+
+- [Loren Segal][ls] reworked the Ruby definition and added highlighting for
+  [YARD][] inline documentation
+- the definition of SQL has become more solid and now it shouldn't be overly
+  greedy when it comes to language detection
+
+[ls]: http://gnuu.org/
+[yard]: http://yardoc.org/
+
+The highlighter has become more usable as a library allowing to do highlighting
+from initialization code of JS frameworks and in ajax methods (see.
+readme.eng.txt).
+
+Also this version drops support for the [WordPress][wp] plugin. Everyone is
+welcome to [pick up its maintenance][p] if needed.
+
+[wp]: http://wordpress.org/
+[p]: http://bazaar.launchpad.net/~isagalaev/+junk/highlight/annotate/342/src/wp_highlight.js.php
+
+
+## Version 5.8
+
+- Jan Berkel has contributed a definition for Scala. +1 to hotness!
+- All CSS-styles are rewritten to work only inside `
` tags to avoid
+  conflicts with host site styles.
+
+
+## Version 5.7.
+
+Fixed escaping of quotes in VBScript strings.
+
+
+## Version 5.5
+
+This version brings a small change: now .ini-files allow digits, underscores and
+square brackets in key names.
+
+
+## Version 5.4
+
+Fixed small but upsetting bug in the packer which caused incorrect highlighting
+of explicitly specified languages. Thanks to Andrew Fedorov for precise
+diagnostics!
+
+
+## Version 5.3
+
+The version to fulfil old promises.
+
+The most significant change is that highlight.js now preserves custom user
+markup in code along with its own highlighting markup. This means that now it's
+possible to use, say, links in code. Thanks to [Vladimir Dolzhenko][vd] for the
+[initial proposal][1] and for making a proof-of-concept patch.
+
+Also in this version:
+
+- [Vasily Polovnyov][vp] has sent a GitHub-like style and has implemented
+  support for CSS @-rules and Ruby symbols.
+- Yura Zaripov has sent two styles: Brown Paper and School Book.
+- Oleg Volchkov has sent a definition for [Parser 3][p3].
+
+[1]: http://softwaremaniacs.org/forum/highlightjs/6612/
+[p3]: http://www.parser.ru/
+[vp]: http://vasily.polovnyov.ru/
+[vd]: http://dolzhenko.blogspot.com/
+
+
+## Version 5.2
+
+- at last it's possible to replace indentation TABs with something sensible (e.g. 2 or 4 spaces)
+- new keywords and built-ins for 1C by Sergey Baranov
+- a couple of small fixes to Apache highlighting
+
+
+## Version 5.1
+
+This is one of those nice version consisting entirely of new and shiny
+contributions!
+
+- [Vladimir Ermakov][vooon] created highlighting for AVR Assembler
+- [Ruslan Keba][rukeba] created highlighting for Apache config file. Also his
+  original visual style for it is now available for all highlight.js languages
+  under the name "Magula".
+- [Shuen-Huei Guan][drake] (aka Drake) sent new keywords for RenderMan
+  languages. Also thanks go to [Konstantin Evdokimenko][ke] for his advice on
+  the matter.
+
+[vooon]: http://vehq.ru/about/
+[rukeba]: http://rukeba.com/
+[drake]: http://drakeguan.org/
+[ke]: http://k-evdokimenko.moikrug.ru/
+
+
+## Version 5.0
+
+The main change in the new major version of highlight.js is a mechanism for
+packing several languages along with the library itself into a single compressed
+file. Now sites using several languages will load considerably faster because
+the library won't dynamically include additional files while loading.
+
+Also this version fixes a long-standing bug with Javascript highlighting that
+couldn't distinguish between regular expressions and division operations.
+
+And as usually there were a couple of minor correctness fixes.
+
+Great thanks to all contributors! Keep using highlight.js.
+
+
+## Version 4.3
+
+This version comes with two contributions from [Jason Diamond][jd]:
+
+- language definition for C# (yes! it was a long-missed thing!)
+- Visual Studio-like highlighting style
+
+Plus there are a couple of minor bug fixes for parsing HTML and XML attributes.
+
+[jd]: http://jason.diamond.name/weblog/
+
+
+## Version 4.2
+
+The biggest news is highlighting for Lisp, courtesy of Vasily Polovnyov. It's
+somewhat experimental meaning that for highlighting "keywords" it doesn't use
+any pre-defined set of a Lisp dialect. Instead it tries to highlight first word
+in parentheses wherever it makes sense. I'd like to ask people programming in
+Lisp to confirm if it's a good idea and send feedback to [the forum][f].
+
+Other changes:
+
+- Smalltalk was excluded from DEFAULT_LANGUAGES to save traffic
+- [Vladimir Epifanov][voldmar] has implemented javascript style switcher for
+  test.html
+- comments now allowed inside Ruby function definition
+- [MEL][] language from [Shuen-Huei Guan][drake]
+- whitespace now allowed between `
` and ``
+- better auto-detection of C++ and PHP
+- HTML allows embedded VBScript (`<% .. %>`)
+
+[f]: http://softwaremaniacs.org/forum/highlightjs/
+[voldmar]: http://voldmar.ya.ru/
+[mel]: http://en.wikipedia.org/wiki/Maya_Embedded_Language
+[drake]: http://drakeguan.org/
+
+
+## Version 4.1
+
+Languages:
+
+- Bash from Vah
+- DOS bat-files from Alexander Makarov (Sam)
+- Diff files from Vasily Polovnyov
+- Ini files from myself though initial idea was from Sam
+
+Styles:
+
+- Zenburn from Vladimir Epifanov, this is an imitation of a
+  [well-known theme for Vim][zenburn].
+- Ascetic from myself, as a realization of ideals of non-flashy highlighting:
+  just one color in only three gradations :-)
+
+In other news. [One small bug][bug] was fixed, built-in keywords were added for
+Python and C++ which improved auto-detection for the latter (it was shame that
+[my wife's blog][alenacpp] had issues with it from time to time). And lastly
+thanks go to Sam for getting rid of my stylistic comments in code that were
+getting in the way of [JSMin][].
+
+[zenburn]: http://en.wikipedia.org/wiki/Zenburn
+[alenacpp]: http://alenacpp.blogspot.com/
+[bug]: http://softwaremaniacs.org/forum/viewtopic.php?id=1823
+[jsmin]: http://code.google.com/p/jsmin-php/
+
+
+## Version 4.0
+
+New major version is a result of vast refactoring and of many contributions.
+
+Visible new features:
+
+- Highlighting of embedded languages. Currently is implemented highlighting of
+  Javascript and CSS inside HTML.
+- Bundled 5 ready-made style themes!
+
+Invisible new features:
+
+- Highlight.js no longer pollutes global namespace. Only one object and one
+  function for backward compatibility.
+- Performance is further increased by about 15%.
+
+Changing of a major version number caused by a new format of language definition
+files. If you use some third-party language files they should be updated.
+
+
+## Version 3.5
+
+A very nice version in my opinion fixing a number of small bugs and slightly
+increased speed in a couple of corner cases. Thanks to everybody who reports
+bugs in he [forum][f] and by email!
+
+There is also a new language — XML. A custom XML formerly was detected as HTML
+and didn't highlight custom tags. In this version I tried to make custom XML to
+be detected and highlighted by its own rules. Which by the way include such
+things as CDATA sections and processing instructions (``).
+
+[f]: http://softwaremaniacs.org/forum/viewforum.php?id=6
+
+
+## Version 3.3
+
+[Vladimir Gubarkov][xonix] has provided an interesting and useful addition.
+File export.html contains a little program that shows and allows to copy and
+paste an HTML code generated by the highlighter for any code snippet. This can
+be useful in situations when one can't use the script itself on a site.
+
+
+[xonix]: http://xonixx.blogspot.com/
+
+
+## Version 3.2 consists completely of contributions:
+
+- Vladimir Gubarkov has described SmallTalk
+- Yuri Ivanov has described 1C
+- Peter Leonov has packaged the highlighter as a Firefox extension
+- Vladimir Ermakov has compiled a mod for phpBB
+
+Many thanks to you all!
+
+
+## Version 3.1
+
+Three new languages are available: Django templates, SQL and Axapta. The latter
+two are sent by [Dmitri Roudakov][1]. However I've almost entirely rewrote an
+SQL definition but I'd never started it be it from the ground up :-)
+
+The engine itself has got a long awaited feature of grouping keywords
+("keyword", "built-in function", "literal"). No more hacks!
+
+[1]: http://roudakov.ru/
+
+
+## Version 3.0
+
+It is major mainly because now highlight.js has grown large and has become
+modular. Now when you pass it a list of languages to highlight it will
+dynamically load into a browser only those languages.
+
+Also:
+
+- Konstantin Evdokimenko of [RibKit][] project has created a highlighting for
+  RenderMan Shading Language and RenderMan Interface Bytestream. Yay for more
+  languages!
+- Heuristics for C++ and HTML got better.
+- I've implemented (at last) a correct handling of backslash escapes in C-like
+  languages.
+
+There is also a small backwards incompatible change in the new version. The
+function initHighlighting that was used to initialize highlighting instead of
+initHighlightingOnLoad a long time ago no longer works. If you by chance still
+use it — replace it with the new one.
+
+[RibKit]: http://ribkit.sourceforge.net/
+
+
+## Version 2.9
+
+Highlight.js is a parser, not just a couple of regular expressions. That said
+I'm glad to announce that in the new version 2.9 has support for:
+
+- in-string substitutions for Ruby -- `#{...}`
+- strings from from numeric symbol codes (like #XX) for Delphi
+
+
+## Version 2.8
+
+A maintenance release with more tuned heuristics. Fully backwards compatible.
+
+
+## Version 2.7
+
+- Nikita Ledyaev presents highlighting for VBScript, yay!
+- A couple of bugs with escaping in strings were fixed thanks to Mickle
+- Ongoing tuning of heuristics
+
+Fixed bugs were rather unpleasant so I encourage everyone to upgrade!
+
+
+## Version 2.4
+
+- Peter Leonov provides another improved highlighting for Perl
+- Javascript gets a new kind of keywords — "literals". These are the words
+  "true", "false" and "null"
+
+Also highlight.js homepage now lists sites that use the library. Feel free to
+add your site by [dropping me a message][mail] until I find the time to build a
+submit form.
+
+[mail]: mailto:Maniac@SoftwareManiacs.Org
+
+
+## Version 2.3
+
+This version fixes IE breakage in previous version. My apologies to all who have
+already downloaded that one!
+
+
+## Version 2.2
+
+- added highlighting for Javascript
+- at last fixed parsing of Delphi's escaped apostrophes in strings
+- in Ruby fixed highlighting of keywords 'def' and 'class', same for 'sub' in
+  Perl
+
+
+## Version 2.0
+
+- Ruby support by [Anton Kovalyov][ak]
+- speed increased by orders of magnitude due to new way of parsing
+- this same way allows now correct highlighting of keywords in some tricky
+  places (like keyword "End" at the end of Delphi classes)
+
+[ak]: http://anton.kovalyov.net/
+
+
+## Version 1.0
+
+Version 1.0 of javascript syntax highlighter is released!
+
+It's the first version available with English description. Feel free to post
+your comments and question to [highlight.js forum][forum]. And don't be afraid
+if you find there some fancy Cyrillic letters -- it's for Russian users too :-)
+
+[forum]: http://softwaremaniacs.org/forum/viewforum.php?id=6
diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/LICENSE b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/LICENSE
new file mode 100644
index 0000000..422deb7
--- /dev/null
+++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/LICENSE
@@ -0,0 +1,24 @@
+Copyright (c) 2006, Ivan Sagalaev
+All rights reserved.
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright
+      notice, this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above copyright
+      notice, this list of conditions and the following disclaimer in the
+      documentation and/or other materials provided with the distribution.
+    * Neither the name of highlight.js nor the names of its contributors 
+      may be used to endorse or promote products derived from this software 
+      without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/README.ru.md b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/README.ru.md
new file mode 100644
index 0000000..0d0e0fe
--- /dev/null
+++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/README.ru.md
@@ -0,0 +1,171 @@
+# Highlight.js
+
+Highlight.js нужен для подсветки синтаксиса в примерах кода в блогах,
+форумах и вообще на любых веб-страницах. Пользоваться им очень просто,
+потому что работает он автоматически: сам находит блоки кода, сам
+определяет язык, сам подсвечивает.
+
+Автоопределением языка можно управлять, когда оно не справляется само (см.
+дальше "Эвристика").
+
+
+## Простое использование
+
+Подключите библиотеку и стиль на страницу и повесть вызов подсветки на
+загрузку страницы:
+
+```html
+
+
+
+```
+
+Весь код на странице, обрамлённый в теги `
 .. 
` +будет автоматически подсвечен. Если вы используете другие теги или хотите +подсвечивать блоки кода динамически, читайте "Инициализацию вручную" ниже. + +- Вы можете скачать собственную версию "highlight.pack.js" или сослаться + на захостенный файл, как описано на странице загрузки: + + +- Стилевые темы можно найти в загруженном архиве или также использовать + захостенные. Чтобы сделать собственный стиль для своего сайта, вам + будет полезен [CSS classes reference][cr], который тоже есть в архиве. + +[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html + + +## node.js + +Highlight.js можно использовать в node.js. Библиотеку со всеми возможными языками можно +установить с NPM: + + npm install highlight.js + +Также её можно собрать из исходников с только теми языками, которые нужны: + + python3 tools/build.py -tnode lang1 lang2 .. + +Использование библиотеки: + +```javascript +var hljs = require('highlight.js'); + +// Если вы знаете язык +hljs.highlight(lang, code).value; + +// Автоопределение языка +hljs.highlightAuto(code).value; +``` + + +## AMD + +Highlight.js можно использовать с загрузчиком AMD-модулей. Для этого его +нужно собрать из исходников следующей командой: + +```bash +$ python3 tools/build.py -tamd lang1 lang2 .. +``` + +Она создаст файл `build/highlight.pack.js`, который является загружаемым +AMD-модулем и содержит все выбранные при сборке языки. Используется он так: + +```javascript +require(["highlight.js/build/highlight.pack"], function(hljs){ + + // Если вы знаете язык + hljs.highlight(lang, code).value; + + // Автоопределение языка + hljs.highlightAuto(code).value; +}); +``` + + +## Замена TABов + +Также вы можете заменить символы TAB ('\x09'), используемые для отступов, на +фиксированное количество пробелов или на отдельный ``, чтобы задать ему +какой-нибудь специальный стиль: + +```html + +``` + + +## Инициализация вручную + +Если вы используете другие теги для блоков кода, вы можете инициализировать их +явно с помощью функции `highlightBlock(code)`. Она принимает DOM-элемент с +текстом расцвечиваемого кода и опционально - строчку для замены символов TAB. + +Например с использованием jQuery код инициализации может выглядеть так: + +```javascript +$(document).ready(function() { + $('pre code').each(function(i, e) {hljs.highlightBlock(e)}); +}); +``` + +`highlightBlock` можно также использовать, чтобы подсветить блоки кода, +добавленные на страницу динамически. Только убедитесь, что вы не делаете этого +повторно для уже раскрашенных блоков. + +Если ваш блок кода использует `
` вместо переводов строки (т.е. если это не +`
`), включите опцию `useBR`:
+
+```javascript
+hljs.configure({useBR: true});
+$('div.code').each(function(i, e) {hljs.highlightBlock(e)});
+```
+
+
+## Эвристика
+
+Определение языка, на котором написан фрагмент, делается с помощью
+довольно простой эвристики: программа пытается расцветить фрагмент всеми
+языками подряд, и для каждого языка считает количество подошедших
+синтаксически конструкций и ключевых слов. Для какого языка нашлось больше,
+тот и выбирается.
+
+Это означает, что в коротких фрагментах высока вероятность ошибки, что
+периодически и случается. Чтобы указать язык фрагмента явно, надо написать
+его название в виде класса к элементу ``:
+
+```html
+
...
+``` + +Можно использовать рекомендованные в HTML5 названия классов: +"language-html", "language-php". Также можно назначать классы на элемент +`
`.
+
+Чтобы запретить расцветку фрагмента вообще, используется класс "no-highlight":
+
+```html
+
...
+``` + + +## Экспорт + +В файле export.html находится небольшая программка, которая показывает и дает +скопировать непосредственно HTML-код подсветки для любого заданного фрагмента кода. +Это может понадобится например на сайте, на котором нельзя подключить сам скрипт +highlight.js. + + +## Координаты + +- Версия: 8.0 +- URL: http://highlightjs.org/ + +Лицензионное соглашение читайте в файле LICENSE. +Список авторов и соавторов читайте в файле AUTHORS.ru.txt diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js new file mode 100644 index 0000000..45d02a9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js @@ -0,0 +1 @@ +var hljs=new function(){function k(v){return v.replace(/&/gm,"&").replace(//gm,">")}function t(v){return v.nodeName.toLowerCase()}function i(w,x){var v=w&&w.exec(x);return v&&v.index==0}function d(v){return Array.prototype.map.call(v.childNodes,function(w){if(w.nodeType==3){return b.useBR?w.nodeValue.replace(/\n/g,""):w.nodeValue}if(t(w)=="br"){return"\n"}return d(w)}).join("")}function r(w){var v=(w.className+" "+(w.parentNode?w.parentNode.className:"")).split(/\s+/);v=v.map(function(x){return x.replace(/^language-/,"")});return v.filter(function(x){return j(x)||x=="no-highlight"})[0]}function o(x,y){var v={};for(var w in x){v[w]=x[w]}if(y){for(var w in y){v[w]=y[w]}}return v}function u(x){var v=[];(function w(y,z){for(var A=y.firstChild;A;A=A.nextSibling){if(A.nodeType==3){z+=A.nodeValue.length}else{if(t(A)=="br"){z+=1}else{if(A.nodeType==1){v.push({event:"start",offset:z,node:A});z=w(A,z);v.push({event:"stop",offset:z,node:A})}}}}return z})(x,0);return v}function q(w,y,C){var x=0;var F="";var z=[];function B(){if(!w.length||!y.length){return w.length?w:y}if(w[0].offset!=y[0].offset){return(w[0].offset"}function E(G){F+=""}function v(G){(G.event=="start"?A:E)(G.node)}while(w.length||y.length){var D=B();F+=k(C.substr(x,D[0].offset-x));x=D[0].offset;if(D==w){z.reverse().forEach(E);do{v(D.splice(0,1)[0]);D=B()}while(D==w&&D.length&&D[0].offset==x);z.reverse().forEach(A)}else{if(D[0].event=="start"){z.push(D[0].node)}else{z.pop()}v(D.splice(0,1)[0])}}return F+k(C.substr(x))}function m(y){function v(z){return(z&&z.source)||z}function w(A,z){return RegExp(v(A),"m"+(y.cI?"i":"")+(z?"g":""))}function x(D,C){if(D.compiled){return}D.compiled=true;D.k=D.k||D.bK;if(D.k){var z={};function E(G,F){if(y.cI){F=F.toLowerCase()}F.split(" ").forEach(function(H){var I=H.split("|");z[I[0]]=[G,I[1]?Number(I[1]):1]})}if(typeof D.k=="string"){E("keyword",D.k)}else{Object.keys(D.k).forEach(function(F){E(F,D.k[F])})}D.k=z}D.lR=w(D.l||/\b[A-Za-z0-9_]+\b/,true);if(C){if(D.bK){D.b=D.bK.split(" ").join("|")}if(!D.b){D.b=/\B|\b/}D.bR=w(D.b);if(!D.e&&!D.eW){D.e=/\B|\b/}if(D.e){D.eR=w(D.e)}D.tE=v(D.e)||"";if(D.eW&&C.tE){D.tE+=(D.e?"|":"")+C.tE}}if(D.i){D.iR=w(D.i)}if(D.r===undefined){D.r=1}if(!D.c){D.c=[]}var B=[];D.c.forEach(function(F){if(F.v){F.v.forEach(function(G){B.push(o(F,G))})}else{B.push(F=="self"?D:F)}});D.c=B;D.c.forEach(function(F){x(F,D)});if(D.starts){x(D.starts,C)}var A=D.c.map(function(F){return F.bK?"\\.?\\b("+F.b+")\\b\\.?":F.b}).concat([D.tE]).concat([D.i]).map(v).filter(Boolean);D.t=A.length?w(A.join("|"),true):{exec:function(F){return null}};D.continuation={}}x(y)}function c(S,L,J,R){function v(U,V){for(var T=0;T";U+=Z+'">';return U+X+Y}function N(){var U=k(C);if(!I.k){return U}var T="";var X=0;I.lR.lastIndex=0;var V=I.lR.exec(U);while(V){T+=U.substr(X,V.index-X);var W=E(I,V);if(W){H+=W[1];T+=w(W[0],V[0])}else{T+=V[0]}X=I.lR.lastIndex;V=I.lR.exec(U)}return T+U.substr(X)}function F(){if(I.sL&&!f[I.sL]){return k(C)}var T=I.sL?c(I.sL,C,true,I.continuation.top):g(C);if(I.r>0){H+=T.r}if(I.subLanguageMode=="continuous"){I.continuation.top=T.top}return w(T.language,T.value,false,true)}function Q(){return I.sL!==undefined?F():N()}function P(V,U){var T=V.cN?w(V.cN,"",true):"";if(V.rB){D+=T;C=""}else{if(V.eB){D+=k(U)+T;C=""}else{D+=T;C=U}}I=Object.create(V,{parent:{value:I}})}function G(T,X){C+=T;if(X===undefined){D+=Q();return 0}var V=v(X,I);if(V){D+=Q();P(V,X);return V.rB?0:X.length}var W=z(I,X);if(W){var U=I;if(!(U.rE||U.eE)){C+=X}D+=Q();do{if(I.cN){D+=""}H+=I.r;I=I.parent}while(I!=W.parent);if(U.eE){D+=k(X)}C="";if(W.starts){P(W.starts,"")}return U.rE?0:X.length}if(A(X,I)){throw new Error('Illegal lexeme "'+X+'" for mode "'+(I.cN||"")+'"')}C+=X;return X.length||1}var M=j(S);if(!M){throw new Error('Unknown language: "'+S+'"')}m(M);var I=R||M;var D="";for(var K=I;K!=M;K=K.parent){if(K.cN){D=w(K.cN,D,true)}}var C="";var H=0;try{var B,y,x=0;while(true){I.t.lastIndex=x;B=I.t.exec(L);if(!B){break}y=G(L.substr(x,B.index-x),B[0]);x=B.index+y}G(L.substr(x));for(var K=I;K.parent;K=K.parent){if(K.cN){D+=""}}return{r:H,value:D,language:S,top:I}}catch(O){if(O.message.indexOf("Illegal")!=-1){return{r:0,value:k(L)}}else{throw O}}}function g(y,x){x=x||b.languages||Object.keys(f);var v={r:0,value:k(y)};var w=v;x.forEach(function(z){if(!j(z)){return}var A=c(z,y,false);A.language=z;if(A.r>w.r){w=A}if(A.r>v.r){w=v;v=A}});if(w.language){v.second_best=w}return v}function h(v){if(b.tabReplace){v=v.replace(/^((<[^>]+>|\t)+)/gm,function(w,z,y,x){return z.replace(/\t/g,b.tabReplace)})}if(b.useBR){v=v.replace(/\n/g,"
")}return v}function p(z){var y=d(z);var A=r(z);if(A=="no-highlight"){return}var v=A?c(A,y,true):g(y);var w=u(z);if(w.length){var x=document.createElementNS("http://www.w3.org/1999/xhtml","pre");x.innerHTML=v.value;v.value=q(w,u(x),y)}v.value=h(v.value);z.innerHTML=v.value;z.className+=" hljs "+(!A&&v.language||"");z.result={language:v.language,re:v.r};if(v.second_best){z.second_best={language:v.second_best.language,re:v.second_best.r}}}var b={classPrefix:"hljs-",tabReplace:null,useBR:false,languages:undefined};function s(v){b=o(b,v)}function l(){if(l.called){return}l.called=true;var v=document.querySelectorAll("pre code");Array.prototype.forEach.call(v,p)}function a(){addEventListener("DOMContentLoaded",l,false);addEventListener("load",l,false)}var f={};var n={};function e(v,x){var w=f[v]=x(this);if(w.aliases){w.aliases.forEach(function(y){n[y]=v})}}function j(v){return f[v]||f[n[v]]}this.highlight=c;this.highlightAuto=g;this.fixMarkup=h;this.highlightBlock=p;this.configure=s;this.initHighlighting=l;this.initHighlightingOnLoad=a;this.registerLanguage=e;this.getLanguage=j;this.inherit=o;this.IR="[a-zA-Z][a-zA-Z0-9_]*";this.UIR="[a-zA-Z_][a-zA-Z0-9_]*";this.NR="\\b\\d+(\\.\\d+)?";this.CNR="(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)";this.BNR="\\b(0b[01]+)";this.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~";this.BE={b:"\\\\[\\s\\S]",r:0};this.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[this.BE]};this.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[this.BE]};this.CLCM={cN:"comment",b:"//",e:"$"};this.CBLCLM={cN:"comment",b:"/\\*",e:"\\*/"};this.HCM={cN:"comment",b:"#",e:"$"};this.NM={cN:"number",b:this.NR,r:0};this.CNM={cN:"number",b:this.CNR,r:0};this.BNM={cN:"number",b:this.BNR,r:0};this.REGEXP_MODE={cN:"regexp",b:/\//,e:/\/[gim]*/,i:/\n/,c:[this.BE,{b:/\[/,e:/\]/,r:0,c:[this.BE]}]};this.TM={cN:"title",b:this.IR,r:0};this.UTM={cN:"title",b:this.UIR,r:0}}();hljs.registerLanguage("bash",function(b){var a={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)\}/}]};var d={cN:"string",b:/"/,e:/"/,c:[b.BE,a,{cN:"variable",b:/\$\(/,e:/\)/,c:[b.BE]}]};var c={cN:"string",b:/'/,e:/'/};return{l:/-?[a-z\.]+/,k:{keyword:"if then else elif fi for break continue while in do done exit return set declare case esac export exec",literal:"true false",built_in:"printf echo read cd pwd pushd popd dirs let eval unset typeset readonly getopts source shopt caller type hash bind help sudo",operator:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"shebang",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:true,c:[b.inherit(b.TM,{b:/\w[\w\d_]*/})],r:0},b.HCM,b.NM,d,c,a]}});hljs.registerLanguage("cs",function(b){var a="abstract as base bool break byte case catch char checked const continue decimal default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long new null object operator out override params private protected public readonly ref return sbyte sealed short sizeof stackalloc static string struct switch this throw true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async await ascending descending from get group into join let orderby partial select set value var where yield";return{k:a,c:[{cN:"comment",b:"///",e:"$",rB:true,c:[{cN:"xmlDocTag",b:"///|"},{cN:"xmlDocTag",b:""}]},b.CLCM,b.CBLCLM,{cN:"preprocessor",b:"#",e:"$",k:"if else elif endif define undef warning error line region endregion pragma checksum"},{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},b.ASM,b.QSM,b.CNM,{bK:"protected public private internal",e:/[{;=]/,k:a,c:[{bK:"class namespace interface",starts:{c:[b.TM]}},{b:b.IR+"\\s*\\(",rB:true,c:[b.TM]}]}]}});hljs.registerLanguage("ruby",function(e){var h="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?";var g="and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor";var a={cN:"yardoctag",b:"@[A-Za-z]+"};var i={cN:"comment",v:[{b:"#",e:"$",c:[a]},{b:"^\\=begin",e:"^\\=end",c:[a],r:10},{b:"^__END__",e:"\\n$"}]};var c={cN:"subst",b:"#\\{",e:"}",k:g};var d={cN:"string",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:"%[qw]?\\(",e:"\\)"},{b:"%[qw]?\\[",e:"\\]"},{b:"%[qw]?{",e:"}"},{b:"%[qw]?<",e:">",r:10},{b:"%[qw]?/",e:"/",r:10},{b:"%[qw]?%",e:"%",r:10},{b:"%[qw]?-",e:"-",r:10},{b:"%[qw]?\\|",e:"\\|",r:10},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/}]};var b={cN:"params",b:"\\(",e:"\\)",k:g};var f=[d,i,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{cN:"inheritance",b:"<\\s*",c:[{cN:"parent",b:"("+e.IR+"::)?"+e.IR}]},i]},{cN:"function",bK:"def",e:" |$|;",r:0,c:[e.inherit(e.TM,{b:h}),b,i]},{cN:"constant",b:"(::)?(\\b[A-Z]\\w*(::)?)+",r:0},{cN:"symbol",b:":",c:[d,{b:h}],r:0},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"("+e.RSR+")\\s*",c:[i,{cN:"regexp",c:[e.BE,c],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}],r:0}];c.c=f;b.c=f;return{k:g,c:f}});hljs.registerLanguage("diff",function(a){return{c:[{cN:"chunk",r:10,v:[{b:/^\@\@ +\-\d+,\d+ +\+\d+,\d+ +\@\@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"header",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\-\-\-/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+\+\+/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"change",b:"^\\!",e:"$"}]}});hljs.registerLanguage("javascript",function(a){return{aliases:["js"],k:{keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require"},c:[{cN:"pi",b:/^\s*('|")use strict('|")/,r:10},a.ASM,a.QSM,a.CLCM,a.CBLCLM,a.CNM,{b:"("+a.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[a.CLCM,a.CBLCLM,a.REGEXP_MODE,{b:/;/,r:0,sL:"xml"}],r:0},{cN:"function",bK:"function",e:/\{/,c:[a.inherit(a.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,c:[a.CLCM,a.CBLCLM],i:/["'\(]/}],i:/\[|%/},{b:/\$[(.]/},{b:"\\."+a.IR,r:0}]}});hljs.registerLanguage("xml",function(a){var c="[A-Za-z0-9\\._:-]+";var d={b:/<\?(php)?(?!\w)/,e:/\?>/,sL:"php",subLanguageMode:"continuous"};var b={eW:true,i:/]+/}]}]}]};return{aliases:["html"],cI:true,c:[{cN:"doctype",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},{cN:"comment",b:"",r:10},{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"|$)",e:">",k:{title:"style"},c:[b],starts:{e:"",rE:true,sL:"css"}},{cN:"tag",b:"|$)",e:">",k:{title:"script"},c:[b],starts:{e:"<\/script>",rE:true,sL:"javascript"}},{b:"<%",e:"%>",sL:"vbscript"},d,{cN:"pi",b:/<\?\w+/,e:/\?>/,r:10},{cN:"tag",b:"",c:[{cN:"title",b:"[^ /><]+",r:0},b]}]}});hljs.registerLanguage("markdown",function(a){return{c:[{cN:"header",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"blockquote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"`.+?`"},{b:"^( {4}|\t)",e:"$",r:0}]},{cN:"horizontal_rule",b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].+?[\\)\\]]",rB:true,c:[{cN:"link_label",b:"\\[",e:"\\]",eB:true,rE:true,r:0},{cN:"link_url",b:"\\]\\(",e:"\\)",eB:true,eE:true},{cN:"link_reference",b:"\\]\\[",e:"\\]",eB:true,eE:true,}],r:10},{b:"^\\[.+\\]:",e:"$",rB:true,c:[{cN:"link_reference",b:"\\[",e:"\\]",eB:true,eE:true},{cN:"link_url",b:"\\s",e:"$"}]}]}});hljs.registerLanguage("css",function(a){var b="[a-zA-Z-][a-zA-Z0-9_-]*";var c={cN:"function",b:b+"\\(",e:"\\)",c:["self",a.NM,a.ASM,a.QSM]};return{cI:true,i:"[=/|']",c:[a.CBLCLM,{cN:"id",b:"\\#[A-Za-z0-9_-]+"},{cN:"class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"attr_selector",b:"\\[",e:"\\]",i:"$"},{cN:"pseudo",b:":(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\\\"\\']+"},{cN:"at_rule",b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{cN:"at_rule",b:"@",e:"[{;]",c:[{cN:"keyword",b:/\S+/},{b:/\s/,eW:true,eE:true,r:0,c:[c,a.ASM,a.QSM,a.NM]}]},{cN:"tag",b:b,r:0},{cN:"rules",b:"{",e:"}",i:"[^\\s]",r:0,c:[a.CBLCLM,{cN:"rule",b:"[^\\s]",rB:true,e:";",eW:true,c:[{cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:true,i:"[^\\s]",starts:{cN:"value",eW:true,eE:true,c:[c,a.NM,a.QSM,a.ASM,a.CBLCLM,{cN:"hexcolor",b:"#[0-9A-Fa-f]+"},{cN:"important",b:"!important"}]}}]}]}]}});hljs.registerLanguage("http",function(a){return{i:"\\S",c:[{cN:"status",b:"^HTTP/[0-9\\.]+",e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{cN:"request",b:"^[A-Z]+ (.*?) HTTP/[0-9\\.]+$",rB:true,e:"$",c:[{cN:"string",b:" ",e:" ",eB:true,eE:true}]},{cN:"attribute",b:"^\\w",e:": ",eE:true,i:"\\n|\\s|=",starts:{cN:"string",e:"$"}},{b:"\\n\\n",starts:{sL:"",eW:true}}]}});hljs.registerLanguage("java",function(b){var a="false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws";return{k:a,i:/<\//,c:[{cN:"javadoc",b:"/\\*\\*",e:"\\*/",c:[{cN:"javadoctag",b:"(^|\\s)@[A-Za-z]+"}],r:10},b.CLCM,b.CBLCLM,b.ASM,b.QSM,{bK:"protected public private",e:/[{;=]/,k:a,c:[{cN:"class",bK:"class interface",eW:true,i:/[:"<>]/,c:[{bK:"extends implements",r:10},b.UTM]},{b:b.UIR+"\\s*\\(",rB:true,c:[b.UTM]}]},b.CNM,{cN:"annotation",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("php",function(b){var e={cN:"variable",b:"\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*"};var a={cN:"preprocessor",b:/<\?(php)?|\?>/};var c={cN:"string",c:[b.BE,a],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},b.inherit(b.ASM,{i:null}),b.inherit(b.QSM,{i:null})]};var d={v:[b.BNM,b.CNM]};return{cI:true,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[b.CLCM,b.HCM,{cN:"comment",b:"/\\*",e:"\\*/",c:[{cN:"phpdoc",b:"\\s@[A-Za-z]+"},a]},{cN:"comment",b:"__halt_compiler.+?;",eW:true,k:"__halt_compiler",l:b.UIR},{cN:"string",b:"<<<['\"]?\\w+['\"]?$",e:"^\\w+;",c:[b.BE]},a,e,{cN:"function",bK:"function",e:/[;{]/,i:"\\$|\\[|%",c:[b.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",e,b.CBLCLM,c,d]}]},{cN:"class",bK:"class interface",e:"{",i:/[:\(\$"]/,c:[{bK:"extends implements",r:10},b.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[b.UTM]},{bK:"use",e:";",c:[b.UTM]},{b:"=>"},c,d]}});hljs.registerLanguage("python",function(a){var f={cN:"prompt",b:/^(>>>|\.\.\.) /};var b={cN:"string",c:[a.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[f],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[f],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/,},{b:/(b|br)"/,e:/"/,},a.ASM,a.QSM]};var d={cN:"number",r:0,v:[{b:a.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:a.CNR+"[lLjJ]?"}]};var e={cN:"params",b:/\(/,e:/\)/,c:["self",f,d,b]};var c={e:/:/,i:/[${=;\n]/,c:[a.UTM,e]};return{k:{keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},i:/(<\/|->|\?)/,c:[f,d,b,a.HCM,a.inherit(c,{cN:"function",bK:"def",r:10}),a.inherit(c,{cN:"class",bK:"class"}),{cN:"decorator",b:/@/,e:/$/},{b:/\b(print|exec)\(/}]}});hljs.registerLanguage("sql",function(a){return{cI:true,i:/[<>]/,c:[{cN:"operator",b:"\\b(begin|end|start|commit|rollback|savepoint|lock|alter|create|drop|rename|call|delete|do|handler|insert|load|replace|select|truncate|update|set|show|pragma|grant|merge)\\b(?!:)",e:";",eW:true,k:{keyword:"all partial global month current_timestamp using go revoke smallint indicator end-exec disconnect zone with character assertion to add current_user usage input local alter match collate real then rollback get read timestamp session_user not integer bit unique day minute desc insert execute like ilike|2 level decimal drop continue isolation found where constraints domain right national some module transaction relative second connect escape close system_user for deferred section cast current sqlstate allocate intersect deallocate numeric public preserve full goto initially asc no key output collation group by union session both last language constraint column of space foreign deferrable prior connection unknown action commit view or first into float year primary cascaded except restrict set references names table outer open select size are rows from prepare distinct leading create only next inner authorization schema corresponding option declare precision immediate else timezone_minute external varying translation true case exception join hour default double scroll value cursor descriptor values dec fetch procedure delete and false int is describe char as at in varchar null trailing any absolute current_time end grant privileges when cross check write current_date pad begin temporary exec time update catalog user sql date on identity timezone_hour natural whenever interval work order cascade diagnostics nchar having left call do handler load replace truncate start lock show pragma exists number trigger if before after each row merge matched database",aggregate:"count sum min max avg"},c:[{cN:"string",b:"'",e:"'",c:[a.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[a.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[a.BE]},a.CNM]},a.CBLCLM,{cN:"comment",b:"--",e:"$"}]}});hljs.registerLanguage("ini",function(a){return{cI:true,i:/\S/,c:[{cN:"comment",b:";",e:"$"},{cN:"title",b:"^\\[",e:"\\]"},{cN:"setting",b:"^[a-z0-9\\[\\]_-]+[ \\t]*=[ \\t]*",e:"$",c:[{cN:"value",eW:true,k:"on off true false yes no",c:[a.QSM,a.NM],r:0}]}]}});hljs.registerLanguage("perl",function(c){var d="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when";var f={cN:"subst",b:"[$@]\\{",e:"\\}",k:d};var g={b:"->{",e:"}"};var a={cN:"variable",v:[{b:/\$\d/},{b:/[\$\%\@\*](\^\w\b|#\w+(\:\:\w+)*|{\w+}|\w+(\:\:\w*)*)/},{b:/[\$\%\@\*][^\s\w{]/,r:0}]};var e={cN:"comment",b:"^(__END__|__DATA__)",e:"\\n$",r:5};var h=[c.BE,f,a];var b=[a,c.HCM,e,{cN:"comment",b:"^\\=\\w",e:"\\=cut",eW:true},g,{cN:"string",c:h,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[c.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[c.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+c.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[c.HCM,e,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[c.BE],r:0}]},{cN:"sub",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",r:5},{cN:"operator",b:"-\\w\\b",r:0}];f.c=b;g.c=b;return{k:d,c:b}});hljs.registerLanguage("objectivec",function(a){var d={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign self synchronized id nonatomic super unichar IBOutlet IBAction strong weak @private @protected @public @try @property @end @throw @catch @finally @synthesize @dynamic @selector @optional @required",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"NSString NSDictionary CGRect CGPoint UIButton UILabel UITextView UIWebView MKMapView UISegmentedControl NSObject UITableViewDelegate UITableViewDataSource NSThread UIActivityIndicator UITabbar UIToolBar UIBarButtonItem UIImageView NSAutoreleasePool UITableView BOOL NSInteger CGFloat NSException NSLog NSMutableString NSMutableArray NSMutableDictionary NSURL NSIndexPath CGSize UITableViewCell UIView UIViewController UINavigationBar UINavigationController UITabBarController UIPopoverController UIPopoverControllerDelegate UIImage NSNumber UISearchBar NSFetchedResultsController NSFetchedResultsChangeType UIScrollView UIScrollViewDelegate UIEdgeInsets UIColor UIFont UIApplication NSNotFound NSNotificationCenter NSNotification UILocalNotification NSBundle NSFileManager NSTimeInterval NSDate NSCalendar NSUserDefaults UIWindow NSRange NSArray NSError NSURLRequest NSURLConnection UIInterfaceOrientation MPMoviePlayerController dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"};var c=/[a-zA-Z@][a-zA-Z0-9_]*/;var b="@interface @class @protocol @implementation";return{k:d,l:c,i:""}]},{cN:"preprocessor",b:"#",e:"$"},{cN:"class",b:"("+b.split(" ").join("|")+")\\b",e:"({|$)",k:b,l:c,c:[a.UTM]},{cN:"variable",b:"\\."+a.UIR,r:0}]}});hljs.registerLanguage("coffeescript",function(c){var b={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",reserved:"case default function var void with const let enum export import native __hasProp __extends __slice __bind __indexOf",built_in:"npm require console print module exports global window document"};var a="[A-Za-z$_][0-9A-Za-z$_]*";var f=c.inherit(c.TM,{b:a});var e={cN:"subst",b:/#\{/,e:/}/,k:b};var d=[c.BNM,c.inherit(c.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[c.BE]},{b:/'/,e:/'/,c:[c.BE]},{b:/"""/,e:/"""/,c:[c.BE,e]},{b:/"/,e:/"/,c:[c.BE,e]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[e,c.HCM]},{b:"//[gim]*",r:0},{b:"/\\S(\\\\.|[^\\n])*?/[gim]*(?=\\s|\\W|$)"}]},{cN:"property",b:"@"+a},{b:"`",e:"`",eB:true,eE:true,sL:"javascript"}];e.c=d;return{k:b,c:d.concat([{cN:"comment",b:"###",e:"###"},c.HCM,{cN:"function",b:"("+a+"\\s*=\\s*)?(\\(.*\\))?\\s*\\B[-=]>",e:"[-=]>",rB:true,c:[f,{cN:"params",b:"\\(",rB:true,c:[{b:/\(/,e:/\)/,k:b,c:["self"].concat(d)}]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:true,i:/[:="\[\]]/,c:[f]},f]},{cN:"attribute",b:a+":",e:":",rB:true,eE:true,r:0}])}});hljs.registerLanguage("nginx",function(c){var b={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+c.UIR}]};var a={eW:true,l:"[a-z/_]+",k:{built_in:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[c.HCM,{cN:"string",c:[c.BE,b],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{cN:"url",b:"([a-z]+):/",e:"\\s",eW:true,eE:true},{cN:"regexp",c:[c.BE,b],v:[{b:"\\s\\^",e:"\\s|{|;",rE:true},{b:"~\\*?\\s+",e:"\\s|{|;",rE:true},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},b]};return{c:[c.HCM,{b:c.UIR+"\\s",e:";|{",rB:true,c:[c.inherit(c.UTM,{starts:a})],r:0}],i:"[^\\s\\}]"}});hljs.registerLanguage("json",function(a){var e={literal:"true false null"};var d=[a.QSM,a.CNM];var c={cN:"value",e:",",eW:true,eE:true,c:d,k:e};var b={b:"{",e:"}",c:[{cN:"attribute",b:'\\s*"',e:'"\\s*:\\s*',eB:true,eE:true,c:[a.BE],i:"\\n",starts:c}],i:"\\S"};var f={b:"\\[",e:"\\]",c:[a.inherit(c,{cN:null})],i:"\\S"};d.splice(d.length,0,b,f);return{c:d,k:e,i:"\\S"}});hljs.registerLanguage("apache",function(a){var b={cN:"number",b:"[\\$%]\\d+"};return{cI:true,c:[a.HCM,{cN:"tag",b:""},{cN:"keyword",b:/\w+/,r:0,k:{common:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"sqbracket",b:"\\s\\[",e:"\\]$"},{cN:"cbracket",b:"[\\$%]\\{",e:"\\}",c:["self",b]},b,a.QSM]}}],i:/\S/}});hljs.registerLanguage("cpp",function(a){var b={keyword:"false int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long throw volatile static protected bool template mutable if public friend do return goto auto void enum else break new extern using true class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue wchar_t inline delete alignof char16_t char32_t constexpr decltype noexcept nullptr static_assert thread_local restrict _Bool complex _Complex _Imaginary",built_in:"std string cin cout cerr clog stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf"};return{aliases:["c"],k:b,i:"",i:"\\n"},a.CLCM]},{cN:"stl_container",b:"\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<",e:">",k:b,r:10,c:["self"]}]}});hljs.registerLanguage("makefile",function(a){var b={cN:"variable",b:/\$\(/,e:/\)/,c:[a.BE]};return{c:[a.HCM,{b:/^\w+\s*\W*=/,rB:true,r:0,starts:{cN:"constant",e:/\s*\W*=/,eE:true,starts:{e:/$/,r:0,c:[b],}}},{cN:"title",b:/^[\w]+:\s*$/},{cN:"phony",b:/^\.PHONY:/,e:/$/,k:".PHONY",l:/[\.\w]+/},{b:/^\t+/,e:/$/,c:[a.QSM,b]}]}}); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/arta.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/arta.css new file mode 100644 index 0000000..02db86a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/arta.css @@ -0,0 +1,160 @@ +/* +Date: 17.V.2011 +Author: pumbur +*/ + +.hljs +{ + display: block; padding: 0.5em; + background: #222; +} + +.profile .hljs-header *, +.ini .hljs-title, +.nginx .hljs-title +{ + color: #fff; +} + +.hljs-comment, +.hljs-javadoc, +.hljs-preprocessor, +.hljs-preprocessor .hljs-title, +.hljs-pragma, +.hljs-shebang, +.profile .hljs-summary, +.diff, +.hljs-pi, +.hljs-doctype, +.hljs-tag, +.hljs-template_comment, +.css .hljs-rules, +.tex .hljs-special +{ + color: #444; +} + +.hljs-string, +.hljs-symbol, +.diff .hljs-change, +.hljs-regexp, +.xml .hljs-attribute, +.smalltalk .hljs-char, +.xml .hljs-value, +.ini .hljs-value, +.clojure .hljs-attribute, +.coffeescript .hljs-attribute +{ + color: #ffcc33; +} + +.hljs-number, +.hljs-addition +{ + color: #00cc66; +} + +.hljs-built_in, +.hljs-literal, +.vhdl .hljs-typename, +.go .hljs-constant, +.go .hljs-typename, +.ini .hljs-keyword, +.lua .hljs-title, +.perl .hljs-variable, +.php .hljs-variable, +.mel .hljs-variable, +.django .hljs-variable, +.css .funtion, +.smalltalk .method, +.hljs-hexcolor, +.hljs-important, +.hljs-flow, +.hljs-inheritance, +.parser3 .hljs-variable +{ + color: #32AAEE; +} + +.hljs-keyword, +.hljs-tag .hljs-title, +.css .hljs-tag, +.css .hljs-class, +.css .hljs-id, +.css .hljs-pseudo, +.css .hljs-attr_selector, +.lisp .hljs-title, +.clojure .hljs-built_in, +.hljs-winutils, +.tex .hljs-command, +.hljs-request, +.hljs-status +{ + color: #6644aa; +} + +.hljs-title, +.ruby .hljs-constant, +.vala .hljs-constant, +.hljs-parent, +.hljs-deletion, +.hljs-template_tag, +.css .hljs-keyword, +.objectivec .hljs-class .hljs-id, +.smalltalk .hljs-class, +.lisp .hljs-keyword, +.apache .hljs-tag, +.nginx .hljs-variable, +.hljs-envvar, +.bash .hljs-variable, +.go .hljs-built_in, +.vbscript .hljs-built_in, +.lua .hljs-built_in, +.rsl .hljs-built_in, +.tail, +.avrasm .hljs-label, +.tex .hljs-formula, +.tex .hljs-formula * +{ + color: #bb1166; +} + +.hljs-yardoctag, +.hljs-phpdoc, +.profile .hljs-header, +.ini .hljs-title, +.apache .hljs-tag, +.parser3 .hljs-title +{ + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata +{ + opacity: 0.6; +} + +.hljs, +.javascript, +.css, +.xml, +.hljs-subst, +.diff .hljs-chunk, +.css .hljs-value, +.css .hljs-attribute, +.lisp .hljs-string, +.lisp .hljs-number, +.tail .hljs-params, +.hljs-container, +.haskell *, +.erlang *, +.erlang_repl * +{ + color: #aaa; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/ascetic.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/ascetic.css new file mode 100644 index 0000000..532d683 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/ascetic.css @@ -0,0 +1,50 @@ +/* + +Original style from softwaremaniacs.org (c) Ivan Sagalaev + +*/ + +.hljs { + display: block; padding: 0.5em; + background: white; color: black; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-filter .hljs-argument, +.hljs-addition, +.hljs-change, +.apache .hljs-tag, +.apache .hljs-cbracket, +.nginx .hljs-built_in, +.tex .hljs-formula { + color: #888; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-shebang, +.hljs-doctype, +.hljs-pi, +.hljs-javadoc, +.hljs-deletion, +.apache .hljs-sqbracket { + color: #CCC; +} + +.hljs-keyword, +.hljs-tag .hljs-title, +.ini .hljs-title, +.lisp .hljs-title, +.clojure .hljs-title, +.http .hljs-title, +.nginx .hljs-title, +.css .hljs-tag, +.hljs-winutils, +.hljs-flow, +.apache .hljs-tag, +.tex .hljs-command, +.hljs-request, +.hljs-status { + font-weight: bold; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.dark.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.dark.css new file mode 100644 index 0000000..a25b308 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Dune Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Dune Dark Comment */ +.hljs-comment, +.hljs-title { + color: #999580; +} + +/* Atelier Dune Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d73737; +} + +/* Atelier Dune Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #b65611; +} + +/* Atelier Dune Dark Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #cfb017; +} + +/* Atelier Dune Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #60ac39; +} + +/* Atelier Dune Dark Aqua */ +.css .hljs-hexcolor { + color: #1fad83; +} + +/* Atelier Dune Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #6684e1; +} + +/* Atelier Dune Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #b854d4; +} + +.hljs { + display: block; + background: #292824; + color: #a6a28c; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.light.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.light.css new file mode 100644 index 0000000..66483c9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Dune Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Dune Light Comment */ +.hljs-comment, +.hljs-title { + color: #7d7a68; +} + +/* Atelier Dune Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d73737; +} + +/* Atelier Dune Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #b65611; +} + +/* Atelier Dune Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #cfb017; +} + +/* Atelier Dune Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #60ac39; +} + +/* Atelier Dune Light Aqua */ +.css .hljs-hexcolor { + color: #1fad83; +} + +/* Atelier Dune Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #6684e1; +} + +/* Atelier Dune Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #b854d4; +} + +.hljs { + display: block; + background: #fefbec; + color: #6e6b5e; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.dark.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.dark.css new file mode 100644 index 0000000..9331e41 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Forest Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Forest Dark Comment */ +.hljs-comment, +.hljs-title { + color: #9c9491; +} + +/* Atelier Forest Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #f22c40; +} + +/* Atelier Forest Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #df5320; +} + +/* Atelier Forest Dark Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #d5911a; +} + +/* Atelier Forest Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #5ab738; +} + +/* Atelier Forest Dark Aqua */ +.css .hljs-hexcolor { + color: #00ad9c; +} + +/* Atelier Forest Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #407ee7; +} + +/* Atelier Forest Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #6666ea; +} + +.hljs { + display: block; + background: #2c2421; + color: #a8a19f; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.light.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.light.css new file mode 100644 index 0000000..9898ec4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Forest Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Forest Light Comment */ +.hljs-comment, +.hljs-title { + color: #766e6b; +} + +/* Atelier Forest Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #f22c40; +} + +/* Atelier Forest Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #df5320; +} + +/* Atelier Forest Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #d5911a; +} + +/* Atelier Forest Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #5ab738; +} + +/* Atelier Forest Light Aqua */ +.css .hljs-hexcolor { + color: #00ad9c; +} + +/* Atelier Forest Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #407ee7; +} + +/* Atelier Forest Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #6666ea; +} + +.hljs { + display: block; + background: #f1efee; + color: #68615e; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.dark.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.dark.css new file mode 100644 index 0000000..1544f62 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Heath Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Heath Dark Comment */ +.hljs-comment, +.hljs-title { + color: #9e8f9e; +} + +/* Atelier Heath Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ca402b; +} + +/* Atelier Heath Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #a65926; +} + +/* Atelier Heath Dark Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #bb8a35; +} + +/* Atelier Heath Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #379a37; +} + +/* Atelier Heath Dark Aqua */ +.css .hljs-hexcolor { + color: #159393; +} + +/* Atelier Heath Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #516aec; +} + +/* Atelier Heath Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #7b59c0; +} + +.hljs { + display: block; + background: #292329; + color: #ab9bab; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.light.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.light.css new file mode 100644 index 0000000..c45bfe8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Heath Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Heath Light Comment */ +.hljs-comment, +.hljs-title { + color: #776977; +} + +/* Atelier Heath Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ca402b; +} + +/* Atelier Heath Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #a65926; +} + +/* Atelier Heath Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #bb8a35; +} + +/* Atelier Heath Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #379a37; +} + +/* Atelier Heath Light Aqua */ +.css .hljs-hexcolor { + color: #159393; +} + +/* Atelier Heath Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #516aec; +} + +/* Atelier Heath Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #7b59c0; +} + +.hljs { + display: block; + background: #f7f3f7; + color: #695d69; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.dark.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.dark.css new file mode 100644 index 0000000..f7b6138 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Lakeside Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Lakeside Dark Comment */ +.hljs-comment, +.hljs-title { + color: #7195a8; +} + +/* Atelier Lakeside Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d22d72; +} + +/* Atelier Lakeside Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #935c25; +} + +/* Atelier Lakeside Dark Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #8a8a0f; +} + +/* Atelier Lakeside Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #568c3b; +} + +/* Atelier Lakeside Dark Aqua */ +.css .hljs-hexcolor { + color: #2d8f6f; +} + +/* Atelier Lakeside Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #257fad; +} + +/* Atelier Lakeside Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #5d5db1; +} + +.hljs { + display: block; + background: #1f292e; + color: #7ea2b4; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.light.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.light.css new file mode 100644 index 0000000..955b333 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Lakeside Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Lakeside Light Comment */ +.hljs-comment, +.hljs-title { + color: #5a7b8c; +} + +/* Atelier Lakeside Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d22d72; +} + +/* Atelier Lakeside Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #935c25; +} + +/* Atelier Lakeside Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #8a8a0f; +} + +/* Atelier Lakeside Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #568c3b; +} + +/* Atelier Lakeside Light Aqua */ +.css .hljs-hexcolor { + color: #2d8f6f; +} + +/* Atelier Lakeside Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #257fad; +} + +/* Atelier Lakeside Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #5d5db1; +} + +.hljs { + display: block; + background: #ebf8ff; + color: #516d7b; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.dark.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.dark.css new file mode 100644 index 0000000..5688b15 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Seaside Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Seaside Dark Comment */ +.hljs-comment, +.hljs-title { + color: #809980; +} + +/* Atelier Seaside Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #e6193c; +} + +/* Atelier Seaside Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #87711d; +} + +/* Atelier Seaside Dark Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #c3c322; +} + +/* Atelier Seaside Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #29a329; +} + +/* Atelier Seaside Dark Aqua */ +.css .hljs-hexcolor { + color: #1999b3; +} + +/* Atelier Seaside Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #3d62f5; +} + +/* Atelier Seaside Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #ad2bee; +} + +.hljs { + display: block; + background: #242924; + color: #8ca68c; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.light.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.light.css new file mode 100644 index 0000000..8731808 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Seaside Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Seaside Light Comment */ +.hljs-comment, +.hljs-title { + color: #687d68; +} + +/* Atelier Seaside Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #e6193c; +} + +/* Atelier Seaside Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #87711d; +} + +/* Atelier Seaside Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #c3c322; +} + +/* Atelier Seaside Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #29a329; +} + +/* Atelier Seaside Light Aqua */ +.css .hljs-hexcolor { + color: #1999b3; +} + +/* Atelier Seaside Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #3d62f5; +} + +/* Atelier Seaside Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #ad2bee; +} + +.hljs { + display: block; + background: #f0fff0; + color: #5e6e5e; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_paper.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_paper.css new file mode 100644 index 0000000..f9541c3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_paper.css @@ -0,0 +1,105 @@ +/* + +Brown Paper style from goldblog.com.ua (c) Zaripov Yura + +*/ + +.hljs { + display: block; padding: 0.5em; + background:#b7a68e url(./brown_papersq.png); +} + +.hljs-keyword, +.hljs-literal, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special, +.hljs-request, +.hljs-status { + color:#005599; + font-weight:bold; +} + +.hljs, +.hljs-subst, +.hljs-tag .hljs-keyword { + color: #363C69; +} + +.hljs-string, +.hljs-title, +.haskell .hljs-type, +.hljs-tag .hljs-value, +.css .hljs-rules .hljs-value, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.ruby .hljs-string, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-number { + color: #2C009F; +} + +.hljs-comment, +.java .hljs-annotation, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.nginx .hljs-built_in, +.tex .hljs-formula { + color: #802022; +} + +.hljs-keyword, +.hljs-literal, +.css .hljs-id, +.hljs-phpdoc, +.hljs-title, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-command { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.8; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png new file mode 100644 index 0000000..3813903 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/dark.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/dark.css new file mode 100644 index 0000000..8e76cdd --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/dark.css @@ -0,0 +1,105 @@ +/* + +Dark style from softwaremaniacs.org (c) Ivan Sagalaev + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #444; +} + +.hljs-keyword, +.hljs-literal, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special { + color: white; +} + +.hljs, +.hljs-subst { + color: #DDD; +} + +.hljs-string, +.hljs-title, +.haskell .hljs-type, +.ini .hljs-title, +.hljs-tag .hljs-value, +.css .hljs-rules .hljs-value, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.ruby .hljs-string, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.hljs-prompt, +.coffeescript .hljs-attribute { + color: #D88; +} + +.hljs-comment, +.java .hljs-annotation, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #777; +} + +.hljs-keyword, +.hljs-literal, +.hljs-title, +.css .hljs-id, +.hljs-phpdoc, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-special, +.hljs-request, +.hljs-status { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css new file mode 100644 index 0000000..3d8485b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css @@ -0,0 +1,153 @@ +/* + +Original style from softwaremaniacs.org (c) Ivan Sagalaev + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #F0F0F0; +} + +.hljs, +.hljs-subst, +.hljs-tag .hljs-title, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title { + color: black; +} + +.hljs-string, +.hljs-title, +.hljs-constant, +.hljs-parent, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-rules .hljs-value .hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.haml .hljs-symbol, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-aggregate, +.hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-addition, +.hljs-flow, +.hljs-stream, +.bash .hljs-variable, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.tex .hljs-special, +.erlang_repl .hljs-function_or_atom, +.asciidoc .hljs-header, +.markdown .hljs-header, +.coffeescript .hljs-attribute { + color: #800; +} + +.smartquote, +.hljs-comment, +.hljs-annotation, +.hljs-template_comment, +.diff .hljs-header, +.hljs-chunk, +.asciidoc .hljs-blockquote, +.markdown .hljs-blockquote { + color: #888; +} + +.hljs-number, +.hljs-date, +.hljs-regexp, +.hljs-literal, +.hljs-hexcolor, +.smalltalk .hljs-symbol, +.smalltalk .hljs-char, +.go .hljs-constant, +.hljs-change, +.lasso .hljs-variable, +.makefile .hljs-variable, +.asciidoc .hljs-bullet, +.markdown .hljs-bullet, +.asciidoc .hljs-link_url, +.markdown .hljs-link_url { + color: #080; +} + +.hljs-label, +.hljs-javadoc, +.ruby .hljs-string, +.hljs-decorator, +.hljs-filter .hljs-argument, +.hljs-localvars, +.hljs-array, +.hljs-attr_selector, +.hljs-important, +.hljs-pseudo, +.hljs-pi, +.haml .hljs-bullet, +.hljs-doctype, +.hljs-deletion, +.hljs-envvar, +.hljs-shebang, +.apache .hljs-sqbracket, +.nginx .hljs-built_in, +.tex .hljs-formula, +.erlang_repl .hljs-reserved, +.hljs-prompt, +.asciidoc .hljs-link_label, +.markdown .hljs-link_label, +.vhdl .hljs-attribute, +.clojure .hljs-attribute, +.asciidoc .hljs-attribute, +.lasso .hljs-attribute, +.coffeescript .hljs-property, +.hljs-phony { + color: #88F +} + +.hljs-keyword, +.hljs-id, +.hljs-title, +.hljs-built_in, +.hljs-aggregate, +.css .hljs-tag, +.hljs-javadoctag, +.hljs-phpdoc, +.hljs-yardoctag, +.smalltalk .hljs-class, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.go .hljs-typename, +.tex .hljs-command, +.asciidoc .hljs-strong, +.markdown .hljs-strong, +.hljs-request, +.hljs-status { + font-weight: bold; +} + +.asciidoc .hljs-emphasis, +.markdown .hljs-emphasis { + font-style: italic; +} + +.nginx .hljs-built_in { + font-weight: normal; +} + +.coffeescript .javascript, +.javascript .xml, +.lasso .markup, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/docco.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/docco.css new file mode 100644 index 0000000..993fd26 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/docco.css @@ -0,0 +1,132 @@ +/* +Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars) +*/ + +.hljs { + display: block; padding: 0.5em; + color: #000; + background: #f8f8ff +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-javadoc { + color: #408080; + font-style: italic +} + +.hljs-keyword, +.assignment, +.hljs-literal, +.css .rule .hljs-keyword, +.hljs-winutils, +.javascript .hljs-title, +.lisp .hljs-title, +.hljs-subst { + color: #954121; +} + +.hljs-number, +.hljs-hexcolor { + color: #40a070 +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula { + color: #219161; +} + +.hljs-title, +.hljs-id { + color: #19469D; +} +.hljs-params { + color: #00F; +} + +.javascript .hljs-title, +.lisp .hljs-title, +.hljs-subst { + font-weight: normal +} + +.hljs-class .hljs-title, +.haskell .hljs-label, +.tex .hljs-command { + color: #458; + font-weight: bold +} + +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-rules .hljs-property, +.django .hljs-tag .hljs-keyword { + color: #000080; + font-weight: normal +} + +.hljs-attribute, +.hljs-variable, +.instancevar, +.lisp .hljs-body { + color: #008080 +} + +.hljs-regexp { + color: #B68 +} + +.hljs-class { + color: #458; + font-weight: bold +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-symbol .hljs-keyword, +.ruby .hljs-symbol .keymethods, +.lisp .hljs-keyword, +.tex .hljs-special, +.input_number { + color: #990073 +} + +.builtin, +.constructor, +.hljs-built_in, +.lisp .hljs-title { + color: #0086b3 +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-doctype, +.hljs-shebang, +.hljs-cdata { + color: #999; + font-weight: bold +} + +.hljs-deletion { + background: #fdd +} + +.hljs-addition { + background: #dfd +} + +.diff .hljs-change { + background: #0086b3 +} + +.hljs-chunk { + color: #aaa +} + +.tex .hljs-formula { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/far.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/far.css new file mode 100644 index 0000000..ecac3c9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/far.css @@ -0,0 +1,113 @@ +/* + +FAR Style (c) MajestiC + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #000080; +} + +.hljs, +.hljs-subst { + color: #0FF; +} + +.hljs-string, +.ruby .hljs-string, +.haskell .hljs-type, +.hljs-tag .hljs-value, +.css .hljs-rules .hljs-value, +.css .hljs-rules .hljs-value .hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-addition, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.clojure .hljs-title, +.coffeescript .hljs-attribute { + color: #FF0; +} + +.hljs-keyword, +.css .hljs-id, +.hljs-title, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.xml .hljs-tag .hljs-title, +.hljs-winutils, +.hljs-flow, +.hljs-change, +.hljs-envvar, +.bash .hljs-variable, +.tex .hljs-special, +.clojure .hljs-built_in { + color: #FFF; +} + +.hljs-comment, +.hljs-phpdoc, +.hljs-javadoc, +.java .hljs-annotation, +.hljs-template_comment, +.hljs-deletion, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #888; +} + +.hljs-number, +.hljs-date, +.hljs-regexp, +.hljs-literal, +.smalltalk .hljs-symbol, +.smalltalk .hljs-char, +.clojure .hljs-attribute { + color: #0F0; +} + +.python .hljs-decorator, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.xml .hljs-pi, +.diff .hljs-header, +.hljs-chunk, +.hljs-shebang, +.nginx .hljs-built_in, +.hljs-prompt { + color: #008080; +} + +.hljs-keyword, +.css .hljs-id, +.hljs-title, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.hljs-winutils, +.hljs-flow, +.apache .hljs-tag, +.nginx .hljs-built_in, +.tex .hljs-command, +.tex .hljs-special, +.hljs-request, +.hljs-status { + font-weight: bold; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/foundation.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/foundation.css new file mode 100644 index 0000000..bc8d4df --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/foundation.css @@ -0,0 +1,133 @@ +/* +Description: Foundation 4 docs style for highlight.js +Author: Dan Allen +Website: http://foundation.zurb.com/docs/ +Version: 1.0 +Date: 2013-04-02 +*/ + +.hljs { + display: block; padding: 0.5em; + background: #eee; +} + +.hljs-header, +.hljs-decorator, +.hljs-annotation { + color: #000077; +} + +.hljs-horizontal_rule, +.hljs-link_url, +.hljs-emphasis, +.hljs-attribute { + color: #070; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-link_label, +.hljs-strong, +.hljs-value, +.hljs-string, +.scss .hljs-value .hljs-string { + color: #d14; +} + +.hljs-strong { + font-weight: bold; +} + +.hljs-blockquote, +.hljs-comment { + color: #998; + font-style: italic; +} + +.asciidoc .hljs-title, +.hljs-function .hljs-title { + color: #900; +} + +.hljs-class { + color: #458; +} + +.hljs-id, +.hljs-pseudo, +.hljs-constant, +.hljs-hexcolor { + color: teal; +} + +.hljs-variable { + color: #336699; +} + +.hljs-bullet, +.hljs-javadoc { + color: #997700; +} + +.hljs-pi, +.hljs-doctype { + color: #3344bb; +} + +.hljs-code, +.hljs-number { + color: #099; +} + +.hljs-important { + color: #f00; +} + +.smartquote, +.hljs-label { + color: #970; +} + +.hljs-preprocessor, +.hljs-pragma { + color: #579; +} + +.hljs-reserved, +.hljs-keyword, +.scss .hljs-value { + color: #000; +} + +.hljs-regexp { + background-color: #fff0ff; + color: #880088; +} + +.hljs-symbol { + color: #990073; +} + +.hljs-symbol .hljs-string { + color: #a60; +} + +.hljs-tag { + color: #007700; +} + +.hljs-at_rule, +.hljs-at_rule .hljs-keyword { + color: #088; +} + +.hljs-at_rule .hljs-preprocessor { + color: #808; +} + +.scss .hljs-tag, +.scss .hljs-attribute { + color: #339; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/github.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/github.css new file mode 100644 index 0000000..71967a3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/github.css @@ -0,0 +1,125 @@ +/* + +github.com style (c) Vasily Polovnyov + +*/ + +.hljs { + display: block; padding: 0.5em; + color: #333; + background: #f8f8f8 +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-javadoc { + color: #998; + font-style: italic +} + +.hljs-keyword, +.css .rule .hljs-keyword, +.hljs-winutils, +.javascript .hljs-title, +.nginx .hljs-title, +.hljs-subst, +.hljs-request, +.hljs-status { + color: #333; + font-weight: bold +} + +.hljs-number, +.hljs-hexcolor, +.ruby .hljs-constant { + color: #099; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula { + color: #d14 +} + +.hljs-title, +.hljs-id, +.coffeescript .hljs-params, +.scss .hljs-preprocessor { + color: #900; + font-weight: bold +} + +.javascript .hljs-title, +.lisp .hljs-title, +.clojure .hljs-title, +.hljs-subst { + font-weight: normal +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.vhdl .hljs-literal, +.tex .hljs-command { + color: #458; + font-weight: bold +} + +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-rules .hljs-property, +.django .hljs-tag .hljs-keyword { + color: #000080; + font-weight: normal +} + +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body { + color: #008080 +} + +.hljs-regexp { + color: #009926 +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.lisp .hljs-keyword, +.tex .hljs-special, +.hljs-prompt { + color: #990073 +} + +.hljs-built_in, +.lisp .hljs-title, +.clojure .hljs-built_in { + color: #0086b3 +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-doctype, +.hljs-shebang, +.hljs-cdata { + color: #999; + font-weight: bold +} + +.hljs-deletion { + background: #fdd +} + +.hljs-addition { + background: #dfd +} + +.diff .hljs-change { + background: #0086b3 +} + +.hljs-chunk { + color: #aaa +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/googlecode.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/googlecode.css new file mode 100644 index 0000000..45b8b3b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/googlecode.css @@ -0,0 +1,147 @@ +/* + +Google Code style (c) Aahan Krish + +*/ + +.hljs { + display: block; padding: 0.5em; + background: white; color: black; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc, +.hljs-comment * { + color: #800; +} + +.hljs-keyword, +.method, +.hljs-list .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.hljs-tag .hljs-title, +.setting .hljs-value, +.hljs-winutils, +.tex .hljs-command, +.http .hljs-title, +.hljs-request, +.hljs-status { + color: #008; +} + +.hljs-envvar, +.tex .hljs-special { + color: #660; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.hljs-regexp, +.coffeescript .hljs-attribute { + color: #080; +} + +.hljs-sub .hljs-identifier, +.hljs-pi, +.hljs-tag, +.hljs-tag .hljs-keyword, +.hljs-decorator, +.ini .hljs-title, +.hljs-shebang, +.hljs-prompt, +.hljs-hexcolor, +.hljs-rules .hljs-value, +.css .hljs-value .hljs-number, +.hljs-literal, +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-number, +.css .hljs-function, +.clojure .hljs-attribute { + color: #066; +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc, +.hljs-typename, +.hljs-tag .hljs-attribute, +.hljs-doctype, +.hljs-class .hljs-id, +.hljs-built_in, +.setting, +.hljs-params, +.hljs-variable, +.clojure .hljs-title { + color: #606; +} + +.css .hljs-tag, +.hljs-rules .hljs-property, +.hljs-pseudo, +.hljs-subst { + color: #000; +} + +.css .hljs-class, +.css .hljs-id { + color: #9B703F; +} + +.hljs-value .hljs-important { + color: #ff7700; + font-weight: bold; +} + +.hljs-rules .hljs-keyword { + color: #C5AF75; +} + +.hljs-annotation, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #9B859D; +} + +.hljs-preprocessor, +.hljs-preprocessor *, +.hljs-pragma { + color: #444; +} + +.tex .hljs-formula { + background-color: #EEE; + font-style: italic; +} + +.diff .hljs-header, +.hljs-chunk { + color: #808080; + font-weight: bold; +} + +.diff .hljs-change { + background-color: #BCCFF9; +} + +.hljs-addition { + background-color: #BAEEBA; +} + +.hljs-deletion { + background-color: #FFC8BD; +} + +.hljs-comment .hljs-yardoctag { + font-weight: bold; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/idea.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/idea.css new file mode 100644 index 0000000..77352f4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/idea.css @@ -0,0 +1,122 @@ +/* + +Intellij Idea-like styling (c) Vasily Polovnyov + +*/ + +.hljs { + display: block; padding: 0.5em; + color: #000; + background: #fff; +} + +.hljs-subst, +.hljs-title { + font-weight: normal; + color: #000; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc, +.diff .hljs-header { + color: #808080; + font-style: italic; +} + +.hljs-annotation, +.hljs-decorator, +.hljs-preprocessor, +.hljs-pragma, +.hljs-doctype, +.hljs-pi, +.hljs-chunk, +.hljs-shebang, +.apache .hljs-cbracket, +.hljs-prompt, +.http .hljs-title { + color: #808000; +} + +.hljs-tag, +.hljs-pi { + background: #efefef; +} + +.hljs-tag .hljs-title, +.hljs-id, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-literal, +.hljs-keyword, +.hljs-hexcolor, +.css .hljs-function, +.ini .hljs-title, +.css .hljs-class, +.hljs-list .hljs-title, +.clojure .hljs-title, +.nginx .hljs-title, +.tex .hljs-command, +.hljs-request, +.hljs-status { + font-weight: bold; + color: #000080; +} + +.hljs-attribute, +.hljs-rules .hljs-keyword, +.hljs-number, +.hljs-date, +.hljs-regexp, +.tex .hljs-special { + font-weight: bold; + color: #0000ff; +} + +.hljs-number, +.hljs-regexp { + font-weight: normal; +} + +.hljs-string, +.hljs-value, +.hljs-filter .hljs-argument, +.css .hljs-function .hljs-params, +.apache .hljs-tag { + color: #008000; + font-weight: bold; +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-char, +.tex .hljs-formula { + color: #000; + background: #d0eded; + font-style: italic; +} + +.hljs-phpdoc, +.hljs-yardoctag, +.hljs-javadoctag { + text-decoration: underline; +} + +.hljs-variable, +.hljs-envvar, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #660e7a; +} + +.hljs-addition { + background: #baeeba; +} + +.hljs-deletion { + background: #ffc8bd; +} + +.diff .hljs-change { + background: #bccff9; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/ir_black.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/ir_black.css new file mode 100644 index 0000000..cc64ef5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/ir_black.css @@ -0,0 +1,105 @@ +/* + IR_Black style (c) Vasily Mikhailitchenko +*/ + +.hljs { + display: block; padding: 0.5em; + background: #000; color: #f8f8f8; +} + +.hljs-shebang, +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc { + color: #7c7c7c; +} + +.hljs-keyword, +.hljs-tag, +.tex .hljs-command, +.hljs-request, +.hljs-status, +.clojure .hljs-attribute { + color: #96CBFE; +} + +.hljs-sub .hljs-keyword, +.method, +.hljs-list .hljs-title, +.nginx .hljs-title { + color: #FFFFB6; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.coffeescript .hljs-attribute { + color: #A8FF60; +} + +.hljs-subst { + color: #DAEFA3; +} + +.hljs-regexp { + color: #E9C062; +} + +.hljs-title, +.hljs-sub .hljs-identifier, +.hljs-pi, +.hljs-decorator, +.tex .hljs-special, +.haskell .hljs-type, +.hljs-constant, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc, +.nginx .hljs-built_in { + color: #FFFFB6; +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-number, +.hljs-variable, +.vbscript, +.hljs-literal { + color: #C6C5FE; +} + +.css .hljs-tag { + color: #96CBFE; +} + +.css .hljs-rules .hljs-property, +.css .hljs-id { + color: #FFFFB6; +} + +.css .hljs-class { + color: #FFF; +} + +.hljs-hexcolor { + color: #C6C5FE; +} + +.hljs-number { + color:#FF73FD; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.7; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/magula.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/magula.css new file mode 100644 index 0000000..45aff24 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/magula.css @@ -0,0 +1,122 @@ +/* +Description: Magula style for highligh.js +Author: Ruslan Keba +Website: http://rukeba.com/ +Version: 1.0 +Date: 2009-01-03 +Music: Aphex Twin / Xtal +*/ + +.hljs { + display: block; padding: 0.5em; + background-color: #f4f4f4; +} + +.hljs, +.hljs-subst, +.lisp .hljs-title, +.clojure .hljs-built_in { + color: black; +} + +.hljs-string, +.hljs-title, +.hljs-parent, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-rules .hljs-value .hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-aggregate, +.hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-addition, +.hljs-flow, +.hljs-stream, +.bash .hljs-variable, +.apache .hljs-cbracket, +.coffeescript .hljs-attribute { + color: #050; +} + +.hljs-comment, +.hljs-annotation, +.hljs-template_comment, +.diff .hljs-header, +.hljs-chunk { + color: #777; +} + +.hljs-number, +.hljs-date, +.hljs-regexp, +.hljs-literal, +.smalltalk .hljs-symbol, +.smalltalk .hljs-char, +.hljs-change, +.tex .hljs-special { + color: #800; +} + +.hljs-label, +.hljs-javadoc, +.ruby .hljs-string, +.hljs-decorator, +.hljs-filter .hljs-argument, +.hljs-localvars, +.hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-envvar, +.hljs-shebang, +.apache .hljs-sqbracket, +.nginx .hljs-built_in, +.tex .hljs-formula, +.hljs-prompt, +.clojure .hljs-attribute { + color: #00e; +} + +.hljs-keyword, +.hljs-id, +.hljs-phpdoc, +.hljs-title, +.hljs-built_in, +.hljs-aggregate, +.smalltalk .hljs-class, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.xml .hljs-tag, +.tex .hljs-command, +.hljs-request, +.hljs-status { + font-weight: bold; + color: navy; +} + +.nginx .hljs-built_in { + font-weight: normal; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} + +/* --- */ +.apache .hljs-tag { + font-weight: bold; + color: blue; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/mono-blue.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/mono-blue.css new file mode 100644 index 0000000..4152d82 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/mono-blue.css @@ -0,0 +1,62 @@ +/* + Five-color theme from a single blue hue. +*/ +.hljs { + display: block; padding: 0.5em; + background: #EAEEF3; color: #00193A; +} + +.hljs-keyword, +.hljs-title, +.hljs-important, +.hljs-request, +.hljs-header, +.hljs-javadoctag { + font-weight: bold; +} + +.hljs-comment, +.hljs-chunk, +.hljs-template_comment { + color: #738191; +} + +.hljs-string, +.hljs-title, +.hljs-parent, +.hljs-built_in, +.hljs-literal, +.hljs-filename, +.hljs-value, +.hljs-addition, +.hljs-tag, +.hljs-argument, +.hljs-link_label, +.hljs-blockquote, +.hljs-header { + color: #0048AB; +} + +.hljs-decorator, +.hljs-prompt, +.hljs-yardoctag, +.hljs-subst, +.hljs-symbol, +.hljs-doctype, +.hljs-regexp, +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-attribute, +.hljs-attr_selector, +.hljs-javadoc, +.hljs-xmlDocTag, +.hljs-deletion, +.hljs-shebang, +.hljs-string .hljs-variable, +.hljs-link_url, +.hljs-bullet, +.hljs-sqbracket, +.hljs-phony { + color: #4C81C9; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai.css new file mode 100644 index 0000000..4e49bef --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai.css @@ -0,0 +1,127 @@ +/* +Monokai style - ported by Luigi Maselli - http://grigio.org +*/ + +.hljs { + display: block; padding: 0.5em; + background: #272822; +} + +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-keyword, +.hljs-literal, +.hljs-strong, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special { + color: #F92672; +} + +.hljs { + color: #DDD; +} + +.hljs .hljs-constant, +.asciidoc .hljs-code { + color: #66D9EF; +} + +.hljs-code, +.hljs-class .hljs-title, +.hljs-header { + color: white; +} + +.hljs-link_label, +.hljs-attribute, +.hljs-symbol, +.hljs-symbol .hljs-string, +.hljs-value, +.hljs-regexp { + color: #BF79DB; +} + +.hljs-link_url, +.hljs-tag .hljs-value, +.hljs-string, +.hljs-bullet, +.hljs-subst, +.hljs-title, +.hljs-emphasis, +.haskell .hljs-type, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.hljs-prompt { + color: #A6E22E; +} + +.hljs-comment, +.java .hljs-annotation, +.smartquote, +.hljs-blockquote, +.hljs-horizontal_rule, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #75715E; +} + +.hljs-keyword, +.hljs-literal, +.css .hljs-id, +.hljs-phpdoc, +.hljs-title, +.hljs-header, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-special, +.hljs-request, +.hljs-status { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai_sublime.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai_sublime.css new file mode 100644 index 0000000..7b0eb2e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai_sublime.css @@ -0,0 +1,149 @@ +/* + +Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/ + +*/ + +.hljs { + display: block; + padding: 0.5em; + background: #23241f; +} + +.hljs, +.hljs-tag, +.css .hljs-rules, +.css .hljs-value, +.css .hljs-function +.hljs-preprocessor, +.hljs-pragma { + color: #f8f8f2; +} + +.hljs-strongemphasis, +.hljs-strong, +.hljs-emphasis { + color: #a8a8a2; +} + +.hljs-bullet, +.hljs-blockquote, +.hljs-horizontal_rule, +.hljs-number, +.hljs-regexp, +.alias .hljs-keyword, +.hljs-literal, +.hljs-hexcolor { + color: #ae81ff; +} + +.hljs-tag .hljs-value, +.hljs-code, +.hljs-title, +.css .hljs-class, +.hljs-class .hljs-title:last-child { + color: #a6e22e; +} + +.hljs-link_url { + font-size: 80%; +} + +.hljs-strong, +.hljs-strongemphasis { + font-weight: bold; +} + +.hljs-emphasis, +.hljs-strongemphasis, +.hljs-class .hljs-title:last-child { + font-style: italic; +} + +.hljs-keyword, +.hljs-function, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special, +.hljs-header, +.hljs-attribute, +.hljs-symbol, +.hljs-symbol .hljs-string, +.hljs-tag .hljs-title, +.hljs-value, +.alias .hljs-keyword:first-child, +.css .hljs-tag, +.css .unit, +.css .hljs-important { + color: #F92672; +} + +.hljs-function .hljs-keyword, +.hljs-class .hljs-keyword:first-child, +.hljs-constant, +.css .hljs-attribute { + color: #66d9ef; +} + +.hljs-variable, +.hljs-params, +.hljs-class .hljs-title { + color: #f8f8f2; +} + +.hljs-string, +.css .hljs-id, +.hljs-subst, +.haskell .hljs-type, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.hljs-prompt, +.hljs-link_label, +.hljs-link_url { + color: #e6db74; +} + +.hljs-comment, +.hljs-javadoc, +.java .hljs-annotation, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #75715e; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata, +.xml .php, +.php .xml { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/obsidian.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/obsidian.css new file mode 100644 index 0000000..1174e4c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/obsidian.css @@ -0,0 +1,154 @@ +/** + * Obsidian style + * ported by Alexander Marenin (http://github.com/ioncreature) + */ + +.hljs { + display: block; padding: 0.5em; + background: #282B2E; +} + +.hljs-keyword, +.hljs-literal, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.css .hljs-id, +.tex .hljs-special { + color: #93C763; +} + +.hljs-number { + color: #FFCD22; +} + +.hljs { + color: #E0E2E4; +} + +.css .hljs-tag, +.css .hljs-pseudo { + color: #D0D2B5; +} + +.hljs-attribute, +.hljs .hljs-constant { + color: #668BB0; +} + +.xml .hljs-attribute { + color: #B3B689; +} + +.xml .hljs-tag .hljs-value { + color: #E8E2B7; +} + +.hljs-code, +.hljs-class .hljs-title, +.hljs-header { + color: white; +} + +.hljs-class, +.hljs-hexcolor { + color: #93C763; +} + +.hljs-regexp { + color: #D39745; +} + +.hljs-at_rule, +.hljs-at_rule .hljs-keyword { + color: #A082BD; +} + +.hljs-doctype { + color: #557182; +} + +.hljs-link_url, +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-bullet, +.hljs-subst, +.hljs-emphasis, +.haskell .hljs-type, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.hljs-prompt { + color: #8CBBAD; +} + +.hljs-string { + color: #EC7600; +} + +.hljs-comment, +.java .hljs-annotation, +.hljs-blockquote, +.hljs-horizontal_rule, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #818E96; +} + +.hljs-keyword, +.hljs-literal, +.css .hljs-id, +.hljs-phpdoc, +.hljs-title, +.hljs-header, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-special, +.hljs-request, +.hljs-at_rule .hljs-keyword, +.hljs-status { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.dark.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.dark.css new file mode 100644 index 0000000..bbbccdd --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.dark.css @@ -0,0 +1,93 @@ +/* + Paraíso (dark) + Created by Jan T. Sott (http://github.com/idleberg) + Inspired by the art of Rubens LP (http://www.rubenslp.com.br) +*/ + +/* Paraíso Comment */ +.hljs-comment, +.hljs-title { + color: #8d8687; +} + +/* Paraíso Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ef6155; +} + +/* Paraíso Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #f99b15; +} + +/* Paraíso Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #fec418; +} + +/* Paraíso Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #48b685; +} + +/* Paraíso Aqua */ +.css .hljs-hexcolor { + color: #5bc4bf; +} + +/* Paraíso Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #06b6ef; +} + +/* Paraíso Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #815ba4; +} + +.hljs { + display: block; + background: #2f1e2e; + color: #a39e9b; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.light.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.light.css new file mode 100644 index 0000000..494fcb4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.light.css @@ -0,0 +1,93 @@ +/* + Paraíso (light) + Created by Jan T. Sott (http://github.com/idleberg) + Inspired by the art of Rubens LP (http://www.rubenslp.com.br) +*/ + +/* Paraíso Comment */ +.hljs-comment, +.hljs-title { + color: #776e71; +} + +/* Paraíso Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ef6155; +} + +/* Paraíso Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #f99b15; +} + +/* Paraíso Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #fec418; +} + +/* Paraíso Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #48b685; +} + +/* Paraíso Aqua */ +.css .hljs-hexcolor { + color: #5bc4bf; +} + +/* Paraíso Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #06b6ef; +} + +/* Paraíso Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #815ba4; +} + +.hljs { + display: block; + background: #e7e9db; + color: #4f424c; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.css new file mode 100644 index 0000000..6ee925d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.css @@ -0,0 +1,106 @@ +/* + +Pojoaque Style by Jason Tate +http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html +Based on Solarized Style from http://ethanschoonover.com/solarized + +*/ + +.hljs { + display: block; padding: 0.5em; + color: #DCCF8F; + background: url(./pojoaque.jpg) repeat scroll left top #181914; +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-doctype, +.lisp .hljs-string, +.hljs-javadoc { + color: #586e75; + font-style: italic; +} + +.hljs-keyword, +.css .rule .hljs-keyword, +.hljs-winutils, +.javascript .hljs-title, +.method, +.hljs-addition, +.css .hljs-tag, +.clojure .hljs-title, +.nginx .hljs-title { + color: #B64926; +} + +.hljs-number, +.hljs-command, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula, +.hljs-regexp, +.hljs-hexcolor { + color: #468966; +} + +.hljs-title, +.hljs-localvars, +.hljs-function .hljs-title, +.hljs-chunk, +.hljs-decorator, +.hljs-built_in, +.lisp .hljs-title, +.clojure .hljs-built_in, +.hljs-identifier, +.hljs-id { + color: #FFB03B; +} + +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body, +.smalltalk .hljs-number, +.hljs-constant, +.hljs-class .hljs-title, +.hljs-parent, +.haskell .hljs-type { + color: #b58900; +} + +.css .hljs-attribute { + color: #b89859; +} + +.css .hljs-number, +.css .hljs-hexcolor { + color: #DCCF8F; +} + +.css .hljs-class { + color: #d3a60c; +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-shebang, +.hljs-symbol, +.hljs-symbol .hljs-string, +.diff .hljs-change, +.hljs-special, +.hljs-attr_selector, +.hljs-important, +.hljs-subst, +.hljs-cdata { + color: #cb4b16; +} + +.hljs-deletion { + color: #dc322f; +} + +.tex .hljs-formula { + background: #073642; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg new file mode 100644 index 0000000..9c07d4a Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/railscasts.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/railscasts.css new file mode 100644 index 0000000..6a38064 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/railscasts.css @@ -0,0 +1,182 @@ +/* + +Railscasts-like style (c) Visoft, Inc. (Damien White) + +*/ + +.hljs { + display: block; + padding: 0.5em; + background: #232323; + color: #E6E1DC; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc, +.hljs-shebang { + color: #BC9458; + font-style: italic; +} + +.hljs-keyword, +.ruby .hljs-function .hljs-keyword, +.hljs-request, +.hljs-status, +.nginx .hljs-title, +.method, +.hljs-list .hljs-title { + color: #C26230; +} + +.hljs-string, +.hljs-number, +.hljs-regexp, +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.tex .hljs-command, +.markdown .hljs-link_label { + color: #A5C261; +} + +.hljs-subst { + color: #519F50; +} + +.hljs-tag, +.hljs-tag .hljs-keyword, +.hljs-tag .hljs-title, +.hljs-doctype, +.hljs-sub .hljs-identifier, +.hljs-pi, +.input_number { + color: #E8BF6A; +} + +.hljs-identifier { + color: #D0D0FF; +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc { + text-decoration: none; +} + +.hljs-constant { + color: #DA4939; +} + + +.hljs-symbol, +.hljs-built_in, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-symbol .hljs-identifier, +.markdown .hljs-link_url, +.hljs-attribute { + color: #6D9CBE; +} + +.markdown .hljs-link_url { + text-decoration: underline; +} + + + +.hljs-params, +.hljs-variable, +.clojure .hljs-attribute { + color: #D0D0FF; +} + +.css .hljs-tag, +.hljs-rules .hljs-property, +.hljs-pseudo, +.tex .hljs-special { + color: #CDA869; +} + +.css .hljs-class { + color: #9B703F; +} + +.hljs-rules .hljs-keyword { + color: #C5AF75; +} + +.hljs-rules .hljs-value { + color: #CF6A4C; +} + +.css .hljs-id { + color: #8B98AB; +} + +.hljs-annotation, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #9B859D; +} + +.hljs-preprocessor, +.hljs-preprocessor *, +.hljs-pragma { + color: #8996A8 !important; +} + +.hljs-hexcolor, +.css .hljs-value .hljs-number { + color: #A5C261; +} + +.hljs-title, +.hljs-decorator, +.css .hljs-function { + color: #FFC66D; +} + +.diff .hljs-header, +.hljs-chunk { + background-color: #2F33AB; + color: #E6E1DC; + display: inline-block; + width: 100%; +} + +.diff .hljs-change { + background-color: #4A410D; + color: #F8F8F8; + display: inline-block; + width: 100%; +} + +.hljs-addition { + background-color: #144212; + color: #E6E1DC; + display: inline-block; + width: 100%; +} + +.hljs-deletion { + background-color: #600; + color: #E6E1DC; + display: inline-block; + width: 100%; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.7; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/rainbow.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/rainbow.css new file mode 100644 index 0000000..d9ffef6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/rainbow.css @@ -0,0 +1,112 @@ +/* + +Style with support for rainbow parens + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #474949; color: #D1D9E1; +} + + +.hljs-body, +.hljs-collection { + color: #D1D9E1; +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-doctype, +.lisp .hljs-string, +.hljs-javadoc { + color: #969896; + font-style: italic; +} + +.hljs-keyword, +.clojure .hljs-attribute, +.hljs-winutils, +.javascript .hljs-title, +.hljs-addition, +.css .hljs-tag { + color: #cc99cc; +} + +.hljs-number { color: #f99157; } + +.hljs-command, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula, +.hljs-regexp, +.hljs-hexcolor { + color: #8abeb7; +} + +.hljs-title, +.hljs-localvars, +.hljs-function .hljs-title, +.hljs-chunk, +.hljs-decorator, +.hljs-built_in, +.lisp .hljs-title, +.hljs-identifier +{ + color: #b5bd68; +} + +.hljs-class .hljs-keyword +{ + color: #f2777a; +} + +.hljs-variable, +.lisp .hljs-body, +.smalltalk .hljs-number, +.hljs-constant, +.hljs-class .hljs-title, +.hljs-parent, +.haskell .hljs-label, +.hljs-id, +.lisp .hljs-title, +.clojure .hljs-title .hljs-built_in { + color: #ffcc66; +} + +.hljs-tag .hljs-title, +.hljs-rules .hljs-property, +.django .hljs-tag .hljs-keyword, +.clojure .hljs-title .hljs-built_in { + font-weight: bold; +} + +.hljs-attribute, +.clojure .hljs-title { + color: #81a2be; +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-shebang, +.hljs-symbol, +.hljs-symbol .hljs-string, +.diff .hljs-change, +.hljs-special, +.hljs-attr_selector, +.hljs-important, +.hljs-subst, +.hljs-cdata { + color: #f99157; +} + +.hljs-deletion { + color: #dc322f; +} + +.tex .hljs-formula { + background: #eee8d5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.css new file mode 100644 index 0000000..98a3bd2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.css @@ -0,0 +1,113 @@ +/* + +School Book style from goldblog.com.ua (c) Zaripov Yura + +*/ + +.hljs { + display: block; padding: 15px 0.5em 0.5em 30px; + font-size: 11px !important; + line-height:16px !important; +} + +pre{ + background:#f6f6ae url(./school_book.png); + border-top: solid 2px #d2e8b9; + border-bottom: solid 1px #d2e8b9; +} + +.hljs-keyword, +.hljs-literal, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special { + color:#005599; + font-weight:bold; +} + +.hljs, +.hljs-subst, +.hljs-tag .hljs-keyword { + color: #3E5915; +} + +.hljs-string, +.hljs-title, +.haskell .hljs-type, +.hljs-tag .hljs-value, +.css .hljs-rules .hljs-value, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.ruby .hljs-string, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.nginx .hljs-built_in, +.tex .hljs-command, +.coffeescript .hljs-attribute { + color: #2C009F; +} + +.hljs-comment, +.java .hljs-annotation, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket { + color: #E60415; +} + +.hljs-keyword, +.hljs-literal, +.css .hljs-id, +.hljs-phpdoc, +.hljs-title, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.xml .hljs-tag .hljs-title, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-command, +.hljs-request, +.hljs-status { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png new file mode 100644 index 0000000..956e979 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_dark.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_dark.css new file mode 100644 index 0000000..f520533 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_dark.css @@ -0,0 +1,107 @@ +/* + +Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull + +*/ + +.hljs { + display: block; + padding: 0.5em; + background: #002b36; + color: #839496; +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-doctype, +.hljs-pi, +.lisp .hljs-string, +.hljs-javadoc { + color: #586e75; +} + +/* Solarized Green */ +.hljs-keyword, +.hljs-winutils, +.method, +.hljs-addition, +.css .hljs-tag, +.hljs-request, +.hljs-status, +.nginx .hljs-title { + color: #859900; +} + +/* Solarized Cyan */ +.hljs-number, +.hljs-command, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula, +.hljs-regexp, +.hljs-hexcolor, +.hljs-link_url { + color: #2aa198; +} + +/* Solarized Blue */ +.hljs-title, +.hljs-localvars, +.hljs-chunk, +.hljs-decorator, +.hljs-built_in, +.hljs-identifier, +.vhdl .hljs-literal, +.hljs-id, +.css .hljs-function { + color: #268bd2; +} + +/* Solarized Yellow */ +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body, +.smalltalk .hljs-number, +.hljs-constant, +.hljs-class .hljs-title, +.hljs-parent, +.haskell .hljs-type, +.hljs-link_reference { + color: #b58900; +} + +/* Solarized Orange */ +.hljs-preprocessor, +.hljs-preprocessor .hljs-keyword, +.hljs-pragma, +.hljs-shebang, +.hljs-symbol, +.hljs-symbol .hljs-string, +.diff .hljs-change, +.hljs-special, +.hljs-attr_selector, +.hljs-subst, +.hljs-cdata, +.clojure .hljs-title, +.css .hljs-pseudo, +.hljs-header { + color: #cb4b16; +} + +/* Solarized Red */ +.hljs-deletion, +.hljs-important { + color: #dc322f; +} + +/* Solarized Violet */ +.hljs-link_label { + color: #6c71c4; +} + +.tex .hljs-formula { + background: #073642; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_light.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_light.css new file mode 100644 index 0000000..ad70474 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_light.css @@ -0,0 +1,107 @@ +/* + +Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull + +*/ + +.hljs { + display: block; + padding: 0.5em; + background: #fdf6e3; + color: #657b83; +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-doctype, +.hljs-pi, +.lisp .hljs-string, +.hljs-javadoc { + color: #93a1a1; +} + +/* Solarized Green */ +.hljs-keyword, +.hljs-winutils, +.method, +.hljs-addition, +.css .hljs-tag, +.hljs-request, +.hljs-status, +.nginx .hljs-title { + color: #859900; +} + +/* Solarized Cyan */ +.hljs-number, +.hljs-command, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula, +.hljs-regexp, +.hljs-hexcolor, +.hljs-link_url { + color: #2aa198; +} + +/* Solarized Blue */ +.hljs-title, +.hljs-localvars, +.hljs-chunk, +.hljs-decorator, +.hljs-built_in, +.hljs-identifier, +.vhdl .hljs-literal, +.hljs-id, +.css .hljs-function { + color: #268bd2; +} + +/* Solarized Yellow */ +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body, +.smalltalk .hljs-number, +.hljs-constant, +.hljs-class .hljs-title, +.hljs-parent, +.haskell .hljs-type, +.hljs-link_reference { + color: #b58900; +} + +/* Solarized Orange */ +.hljs-preprocessor, +.hljs-preprocessor .hljs-keyword, +.hljs-pragma, +.hljs-shebang, +.hljs-symbol, +.hljs-symbol .hljs-string, +.diff .hljs-change, +.hljs-special, +.hljs-attr_selector, +.hljs-subst, +.hljs-cdata, +.clojure .hljs-title, +.css .hljs-pseudo, +.hljs-header { + color: #cb4b16; +} + +/* Solarized Red */ +.hljs-deletion, +.hljs-important { + color: #dc322f; +} + +/* Solarized Violet */ +.hljs-link_label { + color: #6c71c4; +} + +.tex .hljs-formula { + background: #eee8d5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/sunburst.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/sunburst.css new file mode 100644 index 0000000..07b30c2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/sunburst.css @@ -0,0 +1,160 @@ +/* + +Sunburst-like style (c) Vasily Polovnyov + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #000; color: #f8f8f8; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc { + color: #aeaeae; + font-style: italic; +} + +.hljs-keyword, +.ruby .hljs-function .hljs-keyword, +.hljs-request, +.hljs-status, +.nginx .hljs-title { + color: #E28964; +} + +.hljs-function .hljs-keyword, +.hljs-sub .hljs-keyword, +.method, +.hljs-list .hljs-title { + color: #99CF50; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.tex .hljs-command, +.coffeescript .hljs-attribute { + color: #65B042; +} + +.hljs-subst { + color: #DAEFA3; +} + +.hljs-regexp { + color: #E9C062; +} + +.hljs-title, +.hljs-sub .hljs-identifier, +.hljs-pi, +.hljs-tag, +.hljs-tag .hljs-keyword, +.hljs-decorator, +.hljs-shebang, +.hljs-prompt { + color: #89BDFF; +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc { + text-decoration: underline; +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-number { + color: #3387CC; +} + +.hljs-params, +.hljs-variable, +.clojure .hljs-attribute { + color: #3E87E3; +} + +.css .hljs-tag, +.hljs-rules .hljs-property, +.hljs-pseudo, +.tex .hljs-special { + color: #CDA869; +} + +.css .hljs-class { + color: #9B703F; +} + +.hljs-rules .hljs-keyword { + color: #C5AF75; +} + +.hljs-rules .hljs-value { + color: #CF6A4C; +} + +.css .hljs-id { + color: #8B98AB; +} + +.hljs-annotation, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #9B859D; +} + +.hljs-preprocessor, +.hljs-pragma { + color: #8996A8; +} + +.hljs-hexcolor, +.css .hljs-value .hljs-number { + color: #DD7B3B; +} + +.css .hljs-function { + color: #DAD085; +} + +.diff .hljs-header, +.hljs-chunk, +.tex .hljs-formula { + background-color: #0E2231; + color: #F8F8F8; + font-style: italic; +} + +.diff .hljs-change { + background-color: #4A410D; + color: #F8F8F8; +} + +.hljs-addition { + background-color: #253B22; + color: #F8F8F8; +} + +.hljs-deletion { + background-color: #420E09; + color: #F8F8F8; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-blue.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-blue.css new file mode 100644 index 0000000..dfe2675 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-blue.css @@ -0,0 +1,93 @@ +/* Tomorrow Night Blue Theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #7285b7; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ff9da4; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #ffc58f; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #ffeead; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #d1f1a9; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #99ffff; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #bbdaff; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #ebbbff; +} + +.hljs { + display: block; + background: #002451; + color: white; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-bright.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-bright.css new file mode 100644 index 0000000..4ad5d25 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-bright.css @@ -0,0 +1,92 @@ +/* Tomorrow Night Bright Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #969896; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d54e53; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #e78c45; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #e7c547; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #b9ca4a; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #70c0b1; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #7aa6da; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #c397d8; +} + +.hljs { + display: block; + background: black; + color: #eaeaea; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-eighties.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-eighties.css new file mode 100644 index 0000000..08b49c6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-eighties.css @@ -0,0 +1,92 @@ +/* Tomorrow Night Eighties Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #999999; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #f2777a; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #f99157; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #ffcc66; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #99cc99; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #66cccc; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #6699cc; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #cc99cc; +} + +.hljs { + display: block; + background: #2d2d2d; + color: #cccccc; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night.css new file mode 100644 index 0000000..c269b17 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night.css @@ -0,0 +1,93 @@ +/* Tomorrow Night Theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #969896; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #cc6666; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #de935f; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #f0c674; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #b5bd68; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #8abeb7; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #81a2be; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #b294bb; +} + +.hljs { + display: block; + background: #1d1f21; + color: #c5c8c6; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow.css new file mode 100644 index 0000000..3bdead6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow.css @@ -0,0 +1,90 @@ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #8e908c; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #c82829; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #f5871f; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #eab700; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #718c00; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #3e999f; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #4271ae; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #8959a8; +} + +.hljs { + display: block; + background: white; + color: #4d4d4c; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/vs.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/vs.css new file mode 100644 index 0000000..bf33f0f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/vs.css @@ -0,0 +1,89 @@ +/* + +Visual Studio-like style based on original C# coloring by Jason Diamond + +*/ +.hljs { + display: block; padding: 0.5em; + background: white; color: black; +} + +.hljs-comment, +.hljs-annotation, +.hljs-template_comment, +.diff .hljs-header, +.hljs-chunk, +.apache .hljs-cbracket { + color: #008000; +} + +.hljs-keyword, +.hljs-id, +.hljs-built_in, +.smalltalk .hljs-class, +.hljs-winutils, +.bash .hljs-variable, +.tex .hljs-command, +.hljs-request, +.hljs-status, +.nginx .hljs-title, +.xml .hljs-tag, +.xml .hljs-tag .hljs-value { + color: #00f; +} + +.hljs-string, +.hljs-title, +.hljs-parent, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-rules .hljs-value .hljs-number, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-aggregate, +.hljs-template_tag, +.django .hljs-variable, +.hljs-addition, +.hljs-flow, +.hljs-stream, +.apache .hljs-tag, +.hljs-date, +.tex .hljs-formula, +.coffeescript .hljs-attribute { + color: #a31515; +} + +.ruby .hljs-string, +.hljs-decorator, +.hljs-filter .hljs-argument, +.hljs-localvars, +.hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-envvar, +.hljs-shebang, +.hljs-preprocessor, +.hljs-pragma, +.userType, +.apache .hljs-sqbracket, +.nginx .hljs-built_in, +.tex .hljs-special, +.hljs-prompt { + color: #2b91af; +} + +.hljs-phpdoc, +.hljs-javadoc, +.hljs-xmlDocTag { + color: #808080; +} + +.vhdl .hljs-typename { font-weight: bold; } +.vhdl .hljs-string { color: #666666; } +.vhdl .hljs-literal { color: #a31515; } +.vhdl .hljs-attribute { color: #00B0E8; } + +.xml .hljs-attribute { color: #f00; } diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/xcode.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/xcode.css new file mode 100644 index 0000000..57bd748 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/xcode.css @@ -0,0 +1,158 @@ +/* + +XCode style (c) Angel Garcia + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #fff; color: black; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc, +.hljs-comment * { + color: #006a00; +} + +.hljs-keyword, +.hljs-literal, +.nginx .hljs-title { + color: #aa0d91; +} +.method, +.hljs-list .hljs-title, +.hljs-tag .hljs-title, +.setting .hljs-value, +.hljs-winutils, +.tex .hljs-command, +.http .hljs-title, +.hljs-request, +.hljs-status { + color: #008; +} + +.hljs-envvar, +.tex .hljs-special { + color: #660; +} + +.hljs-string { + color: #c41a16; +} +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.hljs-regexp { + color: #080; +} + +.hljs-sub .hljs-identifier, +.hljs-pi, +.hljs-tag, +.hljs-tag .hljs-keyword, +.hljs-decorator, +.ini .hljs-title, +.hljs-shebang, +.hljs-prompt, +.hljs-hexcolor, +.hljs-rules .hljs-value, +.css .hljs-value .hljs-number, +.hljs-symbol, +.hljs-symbol .hljs-string, +.hljs-number, +.css .hljs-function, +.clojure .hljs-title, +.clojure .hljs-built_in, +.hljs-function .hljs-title, +.coffeescript .hljs-attribute { + color: #1c00cf; +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc, +.hljs-typename, +.hljs-tag .hljs-attribute, +.hljs-doctype, +.hljs-class .hljs-id, +.hljs-built_in, +.setting, +.hljs-params, +.clojure .hljs-attribute { + color: #5c2699; +} + +.hljs-variable { + color: #3f6e74; +} +.css .hljs-tag, +.hljs-rules .hljs-property, +.hljs-pseudo, +.hljs-subst { + color: #000; +} + +.css .hljs-class, +.css .hljs-id { + color: #9B703F; +} + +.hljs-value .hljs-important { + color: #ff7700; + font-weight: bold; +} + +.hljs-rules .hljs-keyword { + color: #C5AF75; +} + +.hljs-annotation, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #9B859D; +} + +.hljs-preprocessor, +.hljs-preprocessor *, +.hljs-pragma { + color: #643820; +} + +.tex .hljs-formula { + background-color: #EEE; + font-style: italic; +} + +.diff .hljs-header, +.hljs-chunk { + color: #808080; + font-weight: bold; +} + +.diff .hljs-change { + background-color: #BCCFF9; +} + +.hljs-addition { + background-color: #BAEEBA; +} + +.hljs-deletion { + background-color: #FFC8BD; +} + +.hljs-comment .hljs-yardoctag { + font-weight: bold; +} + +.method .hljs-id { + color: #000; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/zenburn.css b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/zenburn.css new file mode 100644 index 0000000..163484b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/lib/highlight/styles/zenburn.css @@ -0,0 +1,116 @@ +/* + +Zenburn style from voldmar.ru (c) Vladimir Epifanov +based on dark.css by Ivan Sagalaev + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #3F3F3F; + color: #DCDCDC; +} + +.hljs-keyword, +.hljs-tag, +.css .hljs-class, +.css .hljs-id, +.lisp .hljs-title, +.nginx .hljs-title, +.hljs-request, +.hljs-status, +.clojure .hljs-attribute { + color: #E3CEAB; +} + +.django .hljs-template_tag, +.django .hljs-variable, +.django .hljs-filter .hljs-argument { + color: #DCDCDC; +} + +.hljs-number, +.hljs-date { + color: #8CD0D3; +} + +.dos .hljs-envvar, +.dos .hljs-stream, +.hljs-variable, +.apache .hljs-sqbracket { + color: #EFDCBC; +} + +.dos .hljs-flow, +.diff .hljs-change, +.python .exception, +.python .hljs-built_in, +.hljs-literal, +.tex .hljs-special { + color: #EFEFAF; +} + +.diff .hljs-chunk, +.hljs-subst { + color: #8F8F8F; +} + +.dos .hljs-keyword, +.python .hljs-decorator, +.hljs-title, +.haskell .hljs-type, +.diff .hljs-header, +.ruby .hljs-class .hljs-parent, +.apache .hljs-tag, +.nginx .hljs-built_in, +.tex .hljs-command, +.hljs-prompt { + color: #efef8f; +} + +.dos .hljs-winutils, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-string { + color: #DCA3A3; +} + +.diff .hljs-deletion, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.sql .hljs-aggregate, +.hljs-javadoc, +.smalltalk .hljs-class, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.css .hljs-rules .hljs-value, +.hljs-attr_selector, +.hljs-pseudo, +.apache .hljs-cbracket, +.tex .hljs-formula, +.coffeescript .hljs-attribute { + color: #CC9393; +} + +.hljs-shebang, +.diff .hljs-addition, +.hljs-comment, +.java .hljs-annotation, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype { + color: #7F9F7F; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/plugin.js new file mode 100644 index 0000000..06c1bfb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/codesnippet/plugin.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function d(a){CKEDITOR.tools.extend(this,a);this.queue=[];this.init?this.init(CKEDITOR.tools.bind(function(){for(var a;a=this.queue.pop();)a.call(this);this.ready=!0},this)):this.ready=!0}function l(a){var b=a.config.codeSnippet_codeClass,c=/\r?\n/g,h=new CKEDITOR.dom.element("textarea");a.widgets.add("codeSnippet",{allowedContent:"pre; code(language-*)",requiredContent:"pre",styleableElements:"pre",template:'
',dialog:"codeSnippet",pathName:a.lang.codesnippet.pathName, +mask:!0,parts:{pre:"pre",code:"code"},highlight:function(){var e=this,f=this.data,b=function(a){e.parts.code.setHtml(k?a:a.replace(c,"
"))};b(CKEDITOR.tools.htmlEncode(f.code));a._.codesnippet.highlighter.highlight(f.code,f.lang,function(e){a.fire("lockSnapshot");b(e);a.fire("unlockSnapshot")})},data:function(){var a=this.data,b=this.oldData;a.code&&this.parts.code.setHtml(CKEDITOR.tools.htmlEncode(a.code));b&&a.lang!=b.lang&&this.parts.code.removeClass("language-"+b.lang);a.lang&&(this.parts.code.addClass("language-"+ +a.lang),this.highlight());this.oldData=CKEDITOR.tools.copy(a)},upcast:function(e,f){if("pre"==e.name){for(var c=[],d=e.children,i,j=d.length-1;0<=j;j--)i=d[j],(i.type!=CKEDITOR.NODE_TEXT||!i.value.match(m))&&c.push(i);var g;if(!(1!=c.length||"code"!=(g=c[0]).name))if(!(1!=g.children.length||g.children[0].type!=CKEDITOR.NODE_TEXT)){if(c=a._.codesnippet.langsRegex.exec(g.attributes["class"]))f.lang=c[1];h.setHtml(g.getHtml());f.code=h.getValue();g.addClass(b);return e}}},downcast:function(a){var c= +a.getFirst("code");c.children.length=0;c.removeClass(b);c.add(new CKEDITOR.htmlParser.text(CKEDITOR.tools.htmlEncode(this.data.code)));return a}});var m=/^[\s\n\r]*$/}var k=!CKEDITOR.env.ie||8' + + '' + + '' + + '' + + '' + + '' + + '
' + + '' + + '', lang.auto, '
' + + '' + + '' ); + + // Render the color boxes. + for ( var i = 0; i < colors.length; i++ ) { + if ( ( i % 8 ) === 0 ) + output.push( '' ); + + var parts = colors[ i ].split( '/' ), + colorName = parts[ 0 ], + colorCode = parts[ 1 ] || colorName; + + // The data can be only a color code (without #) or colorName + color code + // If only a color code is provided, then the colorName is the color with the hash + // Convert the color from RGB to RRGGBB for better compatibility with IE and . See #5676 + if ( !parts[ 1 ] ) + colorName = '#' + colorName.replace( /^(.)(.)(.)$/, '$1$1$2$2$3$3' ); + + var colorLabel = editor.lang.colorbutton.colors[ colorCode ] || colorCode; + output.push( '' ); + } + + // Render the "More Colors" button. + if ( moreColorsEnabled ) { + output.push( '' + + '' + + '' ); // tr is later in the code. + } + + output.push( '
' + + '' + + '' + + '' + + '
' + + '', lang.more, '' + + '
' ); + + return output.join( '' ); + } + + function isUnstylable( ele ) { + return ( ele.getAttribute( 'contentEditable' ) == 'false' ) || ele.getAttribute( 'data-nostyle' ); + } + } +} ); + +/** + * Whether to enable the **More Colors*** button in the color selectors. + * + * config.colorButton_enableMore = false; + * + * @cfg {Boolean} [colorButton_enableMore=true] + * @member CKEDITOR.config + */ + +/** + * Defines the colors to be displayed in the color selectors. This is a string + * containing hexadecimal notation for HTML colors, without the `'#'` prefix. + * + * **Since 3.3:** A color name may optionally be defined by prefixing the entries with + * a name and the slash character. For example, `'FontColor1/FF9900'` will be + * displayed as the color `#FF9900` in the selector, but will be output as `'FontColor1'`. + * + * // Brazil colors only. + * config.colorButton_colors = '00923E,F8C100,28166F'; + * + * config.colorButton_colors = 'FontColor1/FF9900,FontColor2/0066CC,FontColor3/F00'; + * + * @cfg {String} [colorButton_colors=see source] + * @member CKEDITOR.config + */ +CKEDITOR.config.colorButton_colors = '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,' + + 'B22222,A52A2A,DAA520,006400,40E0D0,0000CD,800080,808080,' + + 'F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,' + + 'FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,' + + 'FFF0F5,FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF'; + +/** + * Stores the style definition that applies the text foreground color. + * + * // This is actually the default value. + * config.colorButton_foreStyle = { + * element: 'span', + * styles: { color: '#(color)' } + * }; + * + * @cfg [colorButton_foreStyle=see source] + * @member CKEDITOR.config + */ +CKEDITOR.config.colorButton_foreStyle = { + element: 'span', + styles: { 'color': '#(color)' }, + overrides: [ { + element: 'font', attributes: { 'color': null } + } ] +}; + +/** + * Stores the style definition that applies the text background color. + * + * // This is actually the default value. + * config.colorButton_backStyle = { + * element: 'span', + * styles: { 'background-color': '#(color)' } + * }; + * + * @cfg [colorButton_backStyle=see source] + * @member CKEDITOR.config + */ +CKEDITOR.config.colorButton_backStyle = { + element: 'span', + styles: { 'background-color': '#(color)' } +}; diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/dialogs/colordialog.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/dialogs/colordialog.js new file mode 100644 index 0000000..d36b86f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/dialogs/colordialog.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("colordialog",function(t){function n(){d.getById(o).removeStyle("background-color");p.getContentElement("picker","selectedColor").setValue("");j&&j.removeAttribute("aria-selected");j=null}function u(a){var a=a.data.getTarget(),c;if("td"==a.getName()&&(c=a.getChild(0).getHtml()))j=a,j.setAttribute("aria-selected",!0),p.getContentElement("picker","selectedColor").setValue(c)}function y(a){for(var a=a.replace(/^#/,""),c=0,b=[];2>=c;c++)b[c]=parseInt(a.substr(2*c,2),16);return"#"+ +(165<=0.2126*b[0]+0.7152*b[1]+0.0722*b[2]?"000":"fff")}function v(a){!a.name&&(a=new CKEDITOR.event(a));var c=!/mouse/.test(a.name),b=a.data.getTarget(),g;if("td"==b.getName()&&(g=b.getChild(0).getHtml()))q(a),c?e=b:w=b,c&&(b.setStyle("border-color",y(g)),b.setStyle("border-style","dotted")),d.getById(k).setStyle("background-color",g),d.getById(l).setHtml(g)}function q(a){if(a=!/mouse/.test(a.name)&&e){var c=a.getChild(0).getHtml();a.setStyle("border-color",c);a.setStyle("border-style","solid")}!e&& +!w&&(d.getById(k).removeStyle("background-color"),d.getById(l).setHtml(" "))}function z(a){var c=a.data,b=c.getTarget(),g=c.getKeystroke(),d="rtl"==t.lang.dir;switch(g){case 38:if(a=b.getParent().getPrevious())a=a.getChild([b.getIndex()]),a.focus();c.preventDefault();break;case 40:if(a=b.getParent().getNext())(a=a.getChild([b.getIndex()]))&&1==a.type&&a.focus();c.preventDefault();break;case 32:case 13:u(a);c.preventDefault();break;case d?37:39:if(a=b.getNext())1==a.type&&(a.focus(),c.preventDefault(!0)); +else if(a=b.getParent().getNext())if((a=a.getChild([0]))&&1==a.type)a.focus(),c.preventDefault(!0);break;case d?39:37:if(a=b.getPrevious())a.focus(),c.preventDefault(!0);else if(a=b.getParent().getPrevious())a=a.getLast(),a.focus(),c.preventDefault(!0)}}var r=CKEDITOR.dom.element,d=CKEDITOR.document,f=t.lang.colordialog,p,x={type:"html",html:" "},j,e,w,m=function(a){return CKEDITOR.tools.getNextId()+"_"+a},k=m("hicolor"),l=m("hicolortext"),o=m("selhicolor"),h;(function(){function a(a,d){for(var s= +a;sg;g++)c(e.$,"#"+b[f]+b[g]+b[s])}}function c(a,c){var b=new r(a.insertCell(-1));b.setAttribute("class","ColorCell");b.setAttribute("tabIndex",-1);b.setAttribute("role","gridcell");b.on("keydown",z);b.on("click",u);b.on("focus",v);b.on("blur",q);b.setStyle("background-color",c);b.setStyle("border","1px solid "+c);b.setStyle("width","14px");b.setStyle("height","14px");var d=m("color_table_cell"); +b.setAttribute("aria-labelledby",d);b.append(CKEDITOR.dom.element.createFromHtml(''+c+"",CKEDITOR.document))}h=CKEDITOR.dom.element.createFromHtml('
'+f.options+'
');h.on("mouseover",v);h.on("mouseout",q);var b="00 33 66 99 cc ff".split(" ");a(0,0);a(3,0);a(0, +3);a(3,3);var d=new r(h.$.insertRow(-1));d.setAttribute("role","row");c(d.$,"#000000");for(var e=0;16>e;e++){var i=e.toString(16);c(d.$,"#"+i+i+i+i+i+i)}c(d.$,"#ffffff")})();return{title:f.title,minWidth:360,minHeight:220,onLoad:function(){p=this},onHide:function(){n();var a=e.getChild(0).getHtml();e.setStyle("border-color",a);e.setStyle("border-style","solid");d.getById(k).removeStyle("background-color");d.getById(l).setHtml(" ");e=null},contents:[{id:"picker",label:f.title,accessKey:"I",elements:[{type:"hbox", +padding:0,widths:["70%","10%","30%"],children:[{type:"html",html:"
",onLoad:function(){CKEDITOR.document.getById(this.domId).append(h)},focus:function(){(e||this.getElement().getElementsByTag("td").getItem(0)).focus()}},x,{type:"vbox",padding:0,widths:["70%","5%","25%"],children:[{type:"html",html:""+f.highlight+'
 
'+f.selected+'
'}, +{type:"text",label:f.selected,labelStyle:"display:none",id:"selectedColor",style:"width: 76px;margin-top:4px",onChange:function(){try{d.getById(o).setStyle("background-color",this.getValue())}catch(a){n()}}},x,{type:"button",id:"clear",label:f.clear,onClick:n}]}]}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/af.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/af.js new file mode 100644 index 0000000..9a6d574 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/af.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","af",{clear:"Herstel",highlight:"Aktief",options:"Kleuropsies",selected:"Geselekteer",title:"Kies kleur"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ar.js new file mode 100644 index 0000000..3b4a497 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ar.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ar",{clear:"مسح",highlight:"تحديد",options:"اختيارات الألوان",selected:"اللون المختار",title:"اختر اللون"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/bg.js new file mode 100644 index 0000000..f57a3a9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/bg.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","bg",{clear:"Изчистване",highlight:"Осветяване",options:"Цветови опции",selected:"Изберете цвят",title:"Изберете цвят"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/bn.js new file mode 100644 index 0000000..1cd5097 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/bn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","bn",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/bs.js new file mode 100644 index 0000000..e8ea577 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/bs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","bs",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ca.js new file mode 100644 index 0000000..9e76e9e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ca",{clear:"Neteja",highlight:"Destacat",options:"Opcions del color",selected:"Color Seleccionat",title:"Seleccioni el color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/cs.js new file mode 100644 index 0000000..4de1f1f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","cs",{clear:"Vyčistit",highlight:"Zvýraznit",options:"Nastavení barvy",selected:"Vybráno",title:"Výběr barvy"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/cy.js new file mode 100644 index 0000000..6536226 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/cy.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","cy",{clear:"Clirio",highlight:"Uwcholeuo",options:"Opsiynau Lliw",selected:"Lliw a Ddewiswyd",title:"Dewis lliw"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/da.js new file mode 100644 index 0000000..df1c5c8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/da.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","da",{clear:"Nulstil",highlight:"Markér",options:"Farvemuligheder",selected:"Valgt farve",title:"Vælg farve"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/de.js new file mode 100644 index 0000000..6ebe48e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","de",{clear:"Entfernen",highlight:"Hervorheben",options:"Farboptionen",selected:"Ausgewählte Farbe",title:"Farbe auswählen"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/el.js new file mode 100644 index 0000000..1447a1c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/el.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","el",{clear:"Εκκαθάριση",highlight:"Σήμανση",options:"Επιλογές Χρωμάτων",selected:"Επιλεγμένο Χρώμα",title:"Επιλογή χρώματος"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en-au.js new file mode 100644 index 0000000..cdde12b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en-au.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","en-au",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en-ca.js new file mode 100644 index 0000000..535acfc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","en-ca",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en-gb.js new file mode 100644 index 0000000..1ec95ff --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en-gb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","en-gb",{clear:"Clear",highlight:"Highlight",options:"Colour Options",selected:"Selected Colour",title:"Select colour"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en.js new file mode 100644 index 0000000..21a79bc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","en",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/eo.js new file mode 100644 index 0000000..aaa8cf9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/eo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","eo",{clear:"Forigi",highlight:"Detaloj",options:"Opcioj pri koloroj",selected:"Selektita koloro",title:"Selekti koloron"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/es.js new file mode 100644 index 0000000..ae4688f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/es.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","es",{clear:"Borrar",highlight:"Muestra",options:"Opciones de colores",selected:"Elegido",title:"Elegir color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/et.js new file mode 100644 index 0000000..4a51ac6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/et.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","et",{clear:"Eemalda",highlight:"Näidis",options:"Värvi valikud",selected:"Valitud värv",title:"Värvi valimine"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/eu.js new file mode 100644 index 0000000..09a9129 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/eu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","eu",{clear:"Garbitu",highlight:"Nabarmendu",options:"Kolore Aukerak",selected:"Hautatutako Kolorea",title:"Kolorea Hautatu"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fa.js new file mode 100644 index 0000000..8b0de9d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fa.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","fa",{clear:"پاک کردن",highlight:"متمایز",options:"گزینه​های رنگ",selected:"رنگ انتخاب شده",title:"انتخاب رنگ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fi.js new file mode 100644 index 0000000..8a9a1fe --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","fi",{clear:"Poista",highlight:"Korostus",options:"Värin ominaisuudet",selected:"Valittu",title:"Valitse väri"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fo.js new file mode 100644 index 0000000..575a9d4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","fo",{clear:"Strika",highlight:"Framheva",options:"Litmøguleikar",selected:"Valdur litur",title:"Vel lit"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fr-ca.js new file mode 100644 index 0000000..d321a83 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fr-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","fr-ca",{clear:"Effacer",highlight:"Surligner",options:"Options de couleur",selected:"Couleur sélectionnée",title:"Choisir une couleur"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fr.js new file mode 100644 index 0000000..b99e1b9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","fr",{clear:"Effacer",highlight:"Détails",options:"Option des couleurs",selected:"Couleur choisie",title:"Choisir une couleur"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/gl.js new file mode 100644 index 0000000..13fcd5f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","gl",{clear:"Limpar",highlight:"Resaltar",options:"Opcións de cor",selected:"Cor seleccionado",title:"Seleccione unha cor"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/gu.js new file mode 100644 index 0000000..658cb5a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/gu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","gu",{clear:"સાફ કરવું",highlight:"હાઈઈટ",options:"રંગના વિકલ્પ",selected:"પસંદ કરેલો રંગ",title:"રંગ પસંદ કરો"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/he.js new file mode 100644 index 0000000..c570071 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/he.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","he",{clear:"ניקוי",highlight:"סימון",options:"אפשרויות צבע",selected:"בחירה",title:"בחירת צבע"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/hi.js new file mode 100644 index 0000000..d14f1a8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/hi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","hi",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/hr.js new file mode 100644 index 0000000..5a99c46 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/hr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","hr",{clear:"Očisti",highlight:"Istaknuto",options:"Opcije boje",selected:"Odabrana boja",title:"Odaberi boju"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/hu.js new file mode 100644 index 0000000..f905e8f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/hu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","hu",{clear:"Ürítés",highlight:"Nagyítás",options:"Szín opciók",selected:"Kiválasztott",title:"Válasszon színt"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/is.js new file mode 100644 index 0000000..3504439 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/is.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","is",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/it.js new file mode 100644 index 0000000..cb5ca86 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","it",{clear:"cancella",highlight:"Evidenzia",options:"Opzioni colore",selected:"Seleziona il colore",title:"Selezionare il colore"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ja.js new file mode 100644 index 0000000..01f2851 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ja.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ja",{clear:"クリア",highlight:"ハイライト",options:"カラーオプション",selected:"選択された色",title:"色選択"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ka.js new file mode 100644 index 0000000..d11c484 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ka.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ka",{clear:"გასუფთავება",highlight:"ჩვენება",options:"ფერის პარამეტრები",selected:"არჩეული ფერი",title:"ფერის შეცვლა"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/km.js new file mode 100644 index 0000000..9be3d0f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/km.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","km",{clear:"សម្អាត",highlight:"បន្លិច​ពណ៌",options:"ជម្រើស​ពណ៌",selected:"ពណ៌​ដែល​បាន​រើស",title:"រើស​ពណ៌"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ko.js new file mode 100644 index 0000000..bf8921f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ko",{clear:"비우기",highlight:"강조",options:"색상 옵션",selected:"선택된 색상",title:"색상 선택"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ku.js new file mode 100644 index 0000000..5b59075 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ku.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ku",{clear:"پاکیکەوە",highlight:"نیشانکردن",options:"هەڵبژاردەی ڕەنگەکان",selected:"ڕەنگی هەڵبژێردراو",title:"هەڵبژاردنی ڕەنگ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/lt.js new file mode 100644 index 0000000..4e3f250 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/lt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","lt",{clear:"Išvalyti",highlight:"Paryškinti",options:"Spalvos nustatymai",selected:"Pasirinkta spalva",title:"Pasirinkite spalvą"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/lv.js new file mode 100644 index 0000000..0e4c7b8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/lv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","lv",{clear:"Notīrīt",highlight:"Paraugs",options:"Krāsas uzstādījumi",selected:"Izvēlētā krāsa",title:"Izvēlies krāsu"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/mk.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/mk.js new file mode 100644 index 0000000..870e232 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/mk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","mk",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/mn.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/mn.js new file mode 100644 index 0000000..0547d82 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/mn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","mn",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ms.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ms.js new file mode 100644 index 0000000..65c6e81 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ms.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ms",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/nb.js new file mode 100644 index 0000000..e843ce1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","nb",{clear:"Tøm",highlight:"Merk",options:"Alternativer for farge",selected:"Valgt farge",title:"Velg farge"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/nl.js new file mode 100644 index 0000000..c2ed122 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","nl",{clear:"Wissen",highlight:"Actief",options:"Kleuropties",selected:"Geselecteerde kleur",title:"Selecteer kleur"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/no.js new file mode 100644 index 0000000..7a85302 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/no.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","no",{clear:"Tøm",highlight:"Merk",options:"Alternativer for farge",selected:"Valgt",title:"Velg farge"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/pl.js new file mode 100644 index 0000000..3be00f6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","pl",{clear:"Wyczyść",highlight:"Zaznacz",options:"Opcje koloru",selected:"Wybrany",title:"Wybierz kolor"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/pt-br.js new file mode 100644 index 0000000..90c14fd --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/pt-br.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","pt-br",{clear:"Limpar",highlight:"Grifar",options:"Opções de Cor",selected:"Cor Selecionada",title:"Selecione uma Cor"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/pt.js new file mode 100644 index 0000000..ac36645 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/pt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","pt",{clear:"Limpar",highlight:"Realçar",options:"Opções de cor",selected:"Cor selecionada",title:"Selecionar cor"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ro.js new file mode 100644 index 0000000..85d83ff --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ro.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ro",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ru.js new file mode 100644 index 0000000..7fe16d2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ru",{clear:"Очистить",highlight:"Под курсором",options:"Настройки цвета",selected:"Выбранный цвет",title:"Выберите цвет"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/si.js new file mode 100644 index 0000000..54bb692 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/si.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","si",{clear:"පැහැදිලි",highlight:"මතුකර පෙන්වන්න",options:"වර්ණ විකල්ප",selected:"තෙරු වර්ණ",title:"වර්ණ තෝරන්න"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sk.js new file mode 100644 index 0000000..be5f13a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","sk",{clear:"Vyčistiť",highlight:"Zvýrazniť",options:"Možnosti farby",selected:"Vybraná farba",title:"Vyberte farbu"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sl.js new file mode 100644 index 0000000..610c269 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","sl",{clear:"Počisti",highlight:"Poudarjeno",options:"Barvne Možnosti",selected:"Izbrano",title:"Izberi barvo"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sq.js new file mode 100644 index 0000000..f739ac4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sq.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","sq",{clear:"Pastro",highlight:"Thekso",options:"Përzgjedhjet e Ngjyrave",selected:"Ngjyra e Përzgjedhur",title:"Përzgjidh një ngjyrë"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sr-latn.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sr-latn.js new file mode 100644 index 0000000..cd518c9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sr-latn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","sr-latn",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sr.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sr.js new file mode 100644 index 0000000..227ed2e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","sr",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sv.js new file mode 100644 index 0000000..d527156 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/sv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","sv",{clear:"Rensa",highlight:"Markera",options:"Färgalternativ",selected:"Vald färg",title:"Välj färg"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/th.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/th.js new file mode 100644 index 0000000..8f352d9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/th.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","th",{clear:"Clear",highlight:"Highlight",options:"Color Options",selected:"Selected Color",title:"Select color"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/tr.js new file mode 100644 index 0000000..c416c06 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","tr",{clear:"Temizle",highlight:"İşaretle",options:"Renk Seçenekleri",selected:"Seçilmiş",title:"Renk seç"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/tt.js new file mode 100644 index 0000000..df9d32a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/tt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","tt",{clear:"Бушату",highlight:"Билгеләү",options:"Төс көйләүләре",selected:"Сайланган төсләр",title:"Төс сайлау"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ug.js new file mode 100644 index 0000000..f89a948 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/ug.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","ug",{clear:"تازىلا",highlight:"يورۇت",options:"رەڭ تاللانمىسى",selected:"رەڭ تاللاڭ",title:"رەڭ تاللاڭ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/uk.js new file mode 100644 index 0000000..c59d1de --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/uk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","uk",{clear:"Очистити",highlight:"Колір, на який вказує курсор",options:"Опції кольорів",selected:"Обраний колір",title:"Обрати колір"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/vi.js new file mode 100644 index 0000000..dae8623 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/vi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","vi",{clear:"Xóa bỏ",highlight:"Màu chọn",options:"Tùy chọn màu",selected:"Màu đã chọn",title:"Chọn màu"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/zh-cn.js new file mode 100644 index 0000000..25e3b00 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","zh-cn",{clear:"清除",highlight:"高亮",options:"颜色选项",selected:"选择颜色",title:"选择颜色"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/zh.js new file mode 100644 index 0000000..57868b9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("colordialog","zh",{clear:"清除",highlight:"高亮",options:"色彩選項",selected:"選取的色彩",title:"選取色彩"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/colordialog/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/plugin.js new file mode 100644 index 0000000..45b58ac --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/colordialog/plugin.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.colordialog={requires:"dialog",lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",init:function(b){var c=new CKEDITOR.dialogCommand("colordialog");c.editorFocus=!1;b.addCommand("colordialog",c);CKEDITOR.dialog.add("colordialog",this.path+"dialogs/colordialog.js");b.getColorFromDialog=function(c,f){var d=function(a){this.removeListener("ok", +d);this.removeListener("cancel",d);a="ok"==a.name?this.getValueOf("picker","selectedColor"):null;c.call(f,a)},e=function(a){a.on("ok",d);a.on("cancel",d)};b.execCommand("colordialog");if(b._.storedDialogs&&b._.storedDialogs.colordialog)e(b._.storedDialogs.colordialog);else CKEDITOR.on("dialogDefinition",function(a){if("colordialog"==a.data.name){var b=a.data.definition;a.removeListener();b.onLoad=CKEDITOR.tools.override(b.onLoad,function(a){return function(){e(this);b.onLoad=a;"function"==typeof a&& +a.call(this)}})}})}}};CKEDITOR.plugins.add("colordialog",CKEDITOR.plugins.colordialog); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/_translationstatus.txt b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/_translationstatus.txt new file mode 100644 index 0000000..5da931c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/_translationstatus.txt @@ -0,0 +1,27 @@ +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license + +bg.js Found: 5 Missing: 0 +cs.js Found: 5 Missing: 0 +cy.js Found: 5 Missing: 0 +da.js Found: 5 Missing: 0 +de.js Found: 5 Missing: 0 +el.js Found: 5 Missing: 0 +eo.js Found: 5 Missing: 0 +et.js Found: 5 Missing: 0 +fa.js Found: 5 Missing: 0 +fi.js Found: 5 Missing: 0 +fr.js Found: 5 Missing: 0 +gu.js Found: 5 Missing: 0 +he.js Found: 5 Missing: 0 +hr.js Found: 5 Missing: 0 +it.js Found: 5 Missing: 0 +nb.js Found: 5 Missing: 0 +nl.js Found: 5 Missing: 0 +no.js Found: 5 Missing: 0 +pl.js Found: 5 Missing: 0 +tr.js Found: 5 Missing: 0 +ug.js Found: 5 Missing: 0 +uk.js Found: 5 Missing: 0 +vi.js Found: 5 Missing: 0 +zh-cn.js Found: 5 Missing: 0 diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ar.js new file mode 100644 index 0000000..9355fc1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ar.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ar",{title:"معلومات العنصر",dialogName:"إسم نافذة الحوار",tabName:"إسم التبويب",elementId:"إسم العنصر",elementType:"نوع العنصر"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/bg.js new file mode 100644 index 0000000..5746bca --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/bg.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","bg",{title:"Информация за елемента",dialogName:"Име на диалоговия прозорец",tabName:"Име на таб",elementId:"ID на елемента",elementType:"Тип на елемента"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ca.js new file mode 100644 index 0000000..4064597 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ca",{title:"Informació de l'element",dialogName:"Nom de la finestra de quadre de diàleg",tabName:"Nom de la pestanya",elementId:"ID de l'element",elementType:"Tipus d'element"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/cs.js new file mode 100644 index 0000000..b218c49 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","cs",{title:"Informace o prvku",dialogName:"Název dialogového okna",tabName:"Název karty",elementId:"ID prvku",elementType:"Typ prvku"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/cy.js new file mode 100644 index 0000000..de29267 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/cy.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","cy",{title:"Gwybodaeth am yr Elfen",dialogName:"Enw ffenestr y deialog",tabName:"Enw'r tab",elementId:"ID yr Elfen",elementType:"Math yr elfen"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/da.js new file mode 100644 index 0000000..481af36 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","da",{title:"Information på elementet",dialogName:"Dialogboks",tabName:"Tab beskrivelse",elementId:"ID på element",elementType:"Type af element"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/de.js new file mode 100644 index 0000000..24ddbe3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/de.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","de",{title:"Elementinformation",dialogName:"Dialogfenstername",tabName:"Reitername",elementId:"Elementkennung",elementType:"Elementtyp"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/el.js new file mode 100644 index 0000000..6159451 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/el.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","el",{title:"Πληροφορίες Στοιχείου",dialogName:"Όνομα παραθύρου διαλόγου",tabName:"Όνομα καρτέλας",elementId:"Αναγνωριστικό Στοιχείου",elementType:"Τύπος στοιχείου"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/en-gb.js new file mode 100644 index 0000000..a5a0fae --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/en-gb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","en-gb",{title:"Element Information",dialogName:"Dialogue window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/en.js new file mode 100644 index 0000000..3b0c0ec --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","en",{title:"Element Information",dialogName:"Dialog window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/eo.js new file mode 100644 index 0000000..58b9a32 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/eo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","eo",{title:"Informo pri la elemento",dialogName:"Nomo de la dialogfenestro",tabName:"Langetnomo",elementId:"ID de la elemento",elementType:"Tipo de la elemento"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/es.js new file mode 100644 index 0000000..2cb40de --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/es.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","es",{title:"Información del Elemento",dialogName:"Nombre de la ventana de diálogo",tabName:"Nombre de la pestaña",elementId:"ID del Elemento",elementType:"Tipo del elemento"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/et.js new file mode 100644 index 0000000..3257e0e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/et.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","et",{title:"Elemendi andmed",dialogName:"Dialoogiakna nimi",tabName:"Saki nimi",elementId:"Elemendi ID",elementType:"Elemendi liik"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/eu.js new file mode 100644 index 0000000..dcd0f25 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/eu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","eu",{title:"Elementuaren Informazioa",dialogName:"Elkarrizketa leihoaren izena",tabName:"Fitxaren izena",elementId:"Elementuaren ID-a",elementType:"Elementu mota"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fa.js new file mode 100644 index 0000000..548f368 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fa.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","fa",{title:"اطلاعات عنصر",dialogName:"نام پنجره محاوره‌ای",tabName:"نام برگه",elementId:"ID عنصر",elementType:"نوع عنصر"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fi.js new file mode 100644 index 0000000..a519460 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","fi",{title:"Elementin tiedot",dialogName:"Dialogi-ikkunan nimi",tabName:"Välilehden nimi",elementId:"Elementin ID",elementType:"Elementin tyyppi"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fr-ca.js new file mode 100644 index 0000000..4832c1f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fr-ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","fr-ca",{title:"Information de l'élément",dialogName:"Nom de la fenêtre",tabName:"Nom de l'onglet",elementId:"ID de l'élément",elementType:"Type de l'élément"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fr.js new file mode 100644 index 0000000..2422708 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/fr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","fr",{title:"Information sur l'élément",dialogName:"Nom de la fenêtre de dialogue",tabName:"Nom de l'onglet",elementId:"ID de l'élément",elementType:"Type de l'élément"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/gl.js new file mode 100644 index 0000000..bc4743e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","gl",{title:"Información do elemento",dialogName:"Nome da xanela de diálogo",tabName:"Nome da lapela",elementId:"ID do elemento",elementType:"Tipo do elemento"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/gu.js new file mode 100644 index 0000000..a92cba2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/gu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","gu",{title:"પ્રાથમિક માહિતી",dialogName:"વિન્ડોનું નામ",tabName:"ટેબનું નામ",elementId:"પ્રાથમિક આઈડી",elementType:"પ્રાથમિક પ્રકાર"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/he.js new file mode 100644 index 0000000..9c44035 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/he.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","he",{title:"מידע על האלמנט",dialogName:"שם הדיאלוג",tabName:"שם הטאב",elementId:"ID של האלמנט",elementType:"סוג האלמנט"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/hr.js new file mode 100644 index 0000000..24f0b98 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/hr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","hr",{title:"Informacije elementa",dialogName:"Naziv prozora za dijalog",tabName:"Naziva jahača",elementId:"ID elementa",elementType:"Vrsta elementa"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/hu.js new file mode 100644 index 0000000..e76bdac --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/hu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","hu",{title:"Elem információ",dialogName:"Párbeszédablak neve",tabName:"Fül neve",elementId:"Elem ID",elementType:"Elem típusa"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/id.js new file mode 100644 index 0000000..7a827c5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/id.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","id",{title:"Informasi Elemen",dialogName:"Nama jendela dialog",tabName:"Nama tab",elementId:"ID Elemen",elementType:"Tipe elemen"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/it.js new file mode 100644 index 0000000..2a54807 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/it.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","it",{title:"Informazioni elemento",dialogName:"Nome finestra di dialogo",tabName:"Nome Tab",elementId:"ID Elemento",elementType:"Tipo elemento"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ja.js new file mode 100644 index 0000000..6c19cf9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ja.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ja",{title:"エレメント情報",dialogName:"ダイアログウィンドウ名",tabName:"タブ名",elementId:"エレメントID",elementType:"要素タイプ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/km.js new file mode 100644 index 0000000..20f7e68 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/km.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","km",{title:"ព័ត៌មាន​នៃ​ធាតុ",dialogName:"ឈ្មោះ​ប្រអប់​វីនដូ",tabName:"ឈ្មោះ​ផ្ទាំង",elementId:"អត្តលេខ​ធាតុ",elementType:"ប្រភេទ​ធាតុ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ko.js new file mode 100644 index 0000000..9215191 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ko",{title:"구성 요소 정보",dialogName:"다이얼로그 윈도우 이름",tabName:"탭 이름",elementId:"요소 ID",elementType:"요소 형식"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ku.js new file mode 100644 index 0000000..8ff78d6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ku.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ku",{title:"زانیاری توخم",dialogName:"ناوی پەنجەرەی دیالۆگ",tabName:"ناوی بازدەر تاب",elementId:"ناسنامەی توخم",elementType:"جۆری توخم"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/lt.js new file mode 100644 index 0000000..9074f69 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/lt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","lt",{title:"Elemento informacija",dialogName:"Dialogo lango pavadinimas",tabName:"Auselės pavadinimas",elementId:"Elemento ID",elementType:"Elemento tipas"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/lv.js new file mode 100644 index 0000000..2929c6c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/lv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","lv",{title:"Elementa informācija",dialogName:"Dialoga loga nosaukums",tabName:"Cilnes nosaukums",elementId:"Elementa ID",elementType:"Elementa tips"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/nb.js new file mode 100644 index 0000000..a408087 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","nb",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/nl.js new file mode 100644 index 0000000..3f062b9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","nl",{title:"Elementinformatie",dialogName:"Naam dialoogvenster",tabName:"Tabnaam",elementId:"Element ID",elementType:"Elementtype"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/no.js new file mode 100644 index 0000000..ecc2e5a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/no.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","no",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/pl.js new file mode 100644 index 0000000..dad1ef0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","pl",{title:"Informacja o elemencie",dialogName:"Nazwa okna dialogowego",tabName:"Nazwa zakładki",elementId:"ID elementu",elementType:"Typ elementu"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/pt-br.js new file mode 100644 index 0000000..65dadf0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/pt-br.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","pt-br",{title:"Informação do Elemento",dialogName:"Nome da janela de diálogo",tabName:"Nome da aba",elementId:"ID do Elemento",elementType:"Tipo do elemento"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/pt.js new file mode 100644 index 0000000..562cba9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/pt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","pt",{title:"Informação do elemento",dialogName:"Nome da janela de diálogo",tabName:"Nome do separador",elementId:"ID do elemento",elementType:"Tipo de Elemento"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ro.js new file mode 100644 index 0000000..80ec857 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ro.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ro",{title:"Informația elementului",dialogName:"Numele ferestrei de dialog",tabName:"Denumire de tab",elementId:"ID Element",elementType:"Tipul elementului"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ru.js new file mode 100644 index 0000000..4e37375 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ru",{title:"Информация об элементе",dialogName:"Имя окна диалога",tabName:"Имя вкладки",elementId:"ID элемента",elementType:"Тип элемента"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/si.js new file mode 100644 index 0000000..c8a5199 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/si.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","si",{title:"මුලද්‍රව්‍ය ",dialogName:"දෙබස් කවුළුවේ නම",tabName:"තීරුවේ නම",elementId:"මුලද්‍රව්‍ය කේතය",elementType:"මුලද්‍රව්‍ය වර්ගය"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sk.js new file mode 100644 index 0000000..61583f0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","sk",{title:"Informácie o prvku",dialogName:"Názov okna dialógu",tabName:"Názov záložky",elementId:"ID prvku",elementType:"Typ prvku"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sl.js new file mode 100644 index 0000000..092bf8f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","sl",{title:"Podatki elementa",dialogName:"Ime pogovornega okna",tabName:"Ime zavihka",elementId:"ID elementa",elementType:"Tip elementa"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sq.js new file mode 100644 index 0000000..794b939 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sq.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","sq",{title:"Të dhënat e elementit",dialogName:"Emri i dritares së dialogut",tabName:"Emri i fletës",elementId:"ID e elementit",elementType:"Lloji i elementit"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sv.js new file mode 100644 index 0000000..9258458 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/sv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","sv",{title:"Elementinformation",dialogName:"Dialogrutans namn",tabName:"Fliknamn",elementId:"Elementet-ID",elementType:"Elementet-typ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/tr.js new file mode 100644 index 0000000..0e40959 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","tr",{title:"Eleman Bilgisi",dialogName:"İletişim pencere ismi",tabName:"Sekme adı",elementId:"Eleman ID",elementType:"Eleman türü"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/tt.js new file mode 100644 index 0000000..1360d5d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/tt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","tt",{title:"Элемент тасвирламасы",dialogName:"Диалог тәрәзәсе исеме",tabName:"Өстәмә бит исеме",elementId:"Элемент идентификаторы",elementType:"Элемент төре"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ug.js new file mode 100644 index 0000000..2509224 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/ug.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ug",{title:"ئېلېمېنت ئۇچۇرى",dialogName:"سۆزلەشكۈ كۆزنەك ئاتى",tabName:"Tab ئاتى",elementId:"ئېلېمېنت كىملىكى",elementType:"ئېلېمېنت تىپى"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/uk.js new file mode 100644 index 0000000..f833bee --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/uk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","uk",{title:"Відомості про Елемент",dialogName:"Заголовок діалогового вікна",tabName:"Назва вкладки",elementId:"Ідентифікатор Елемента",elementType:"Тип Елемента"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/vi.js new file mode 100644 index 0000000..795cb80 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/vi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","vi",{title:"Thông tin thành ph",dialogName:"Tên hộp tho",tabName:"Tên th",elementId:"Mã thành ph",elementType:"Loại thành ph"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/zh-cn.js new file mode 100644 index 0000000..4231f20 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","zh-cn",{title:"元素信息",dialogName:"对话框窗口名称",tabName:"选项卡名称",elementId:"元素 ID",elementType:"元素类型"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/zh.js new file mode 100644 index 0000000..5ef9b3d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","zh",{title:"元件資訊",dialogName:"對話視窗名稱",tabName:"標籤名稱",elementId:"元件 ID",elementType:"元件類型"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/devtools/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/devtools/plugin.js new file mode 100644 index 0000000..e558937 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/devtools/plugin.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("devtools",{lang:"ar,bg,ca,cs,cy,da,de,el,en,en-gb,eo,es,et,eu,fa,fi,fr,fr-ca,gl,gu,he,hr,hu,id,it,ja,km,ko,ku,lt,lv,nb,nl,no,pl,pt,pt-br,ru,si,sk,sl,sq,sv,tr,tt,ug,uk,vi,zh,zh-cn",init:function(i){i._.showDialogDefinitionTooltips=1},onLoad:function(){CKEDITOR.document.appendStyleText(CKEDITOR.config.devtools_styles||"#cke_tooltip { padding: 5px; border: 2px solid #333; background: #ffffff }#cke_tooltip h2 { font-size: 1.1em; border-bottom: 1px solid; margin: 0; padding: 1px; }#cke_tooltip ul { padding: 0pt; list-style-type: none; }")}}); +(function(){function i(a,c,b,f){var a=a.lang.devtools,j=''+(b?b.type:"content")+"",c="

"+a.title+"

  • "+a.dialogName+" : "+c.getName()+"
  • "+a.tabName+" : "+f+"
  • ";b&&(c+="
  • "+a.elementId+" : "+b.id+"
  • ");c+="
  • "+a.elementType+" : "+j+"
  • ";return c+"
"}function k(d, +c,b,f,j,g){var e=c.getDocumentPosition(),h={"z-index":CKEDITOR.dialog._.currentZIndex+10,top:e.y+c.getSize("height")+"px"};a.setHtml(d(b,f,j,g));a.show();"rtl"==b.lang.dir?(d=CKEDITOR.document.getWindow().getViewPaneSize(),h.right=d.width-e.x-c.getSize("width")+"px"):h.left=e.x+"px";a.setStyles(h)}var a;CKEDITOR.on("reset",function(){a&&a.remove();a=null});CKEDITOR.on("dialogDefinition",function(d){var c=d.editor;if(c._.showDialogDefinitionTooltips){a||(a=CKEDITOR.dom.element.createFromHtml('
', +CKEDITOR.document),a.hide(),a.on("mouseover",function(){this.show()}),a.on("mouseout",function(){this.hide()}),a.appendTo(CKEDITOR.document.getBody()));var b=d.data.definition.dialog,f=c.config.devtools_textCallback||i;b.on("load",function(){for(var d=b.parts.tabs.getChildren(),g,e=0,h=d.count();e');a.ui.space("contents").append(b);b=a.editable(b);b.detach=CKEDITOR.tools.override(b.detach,function(a){return function(){a.apply(this,arguments);this.remove()}});a.setData(a.getData(1),c);a.fire("contentDom")})}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/dialogs/docprops.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/dialogs/docprops.js new file mode 100644 index 0000000..06ab51a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/dialogs/docprops.js @@ -0,0 +1,25 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("docProps",function(g){function p(a,d){var e=function(){b(this);d(this,this._.parentDialog)},b=function(a){a.removeListener("ok",e);a.removeListener("cancel",b)},f=function(a){a.on("ok",e);a.on("cancel",b)};g.execCommand(a);if(g._.storedDialogs.colordialog)f(g._.storedDialogs.colordialog);else CKEDITOR.on("dialogDefinition",function(b){if(b.data.name==a){var d=b.data.definition;b.removeListener();d.onLoad=CKEDITOR.tools.override(d.onLoad,function(a){return function(){f(this);d.onLoad= +a;"function"==typeof a&&a.call(this)}})}})}function l(){var a=this.getDialog().getContentElement("general",this.id+"Other");a&&("other"==this.getValue()?(a.getInputElement().removeAttribute("readOnly"),a.focus(),a.getElement().removeClass("cke_disabled")):(a.getInputElement().setAttribute("readOnly",!0),a.getElement().addClass("cke_disabled")))}function i(a,d,e){return function(b,f,c){f=k;b="undefined"!=typeof e?e:this.getValue();!b&&a in f?f[a].remove():b&&a in f?f[a].setAttribute("content",b):b&& +(f=new CKEDITOR.dom.element("meta",g.document),f.setAttribute(d?"http-equiv":"name",a),f.setAttribute("content",b),c.append(f))}}function j(a,d){return function(){var e=k,e=a in e?e[a].getAttribute("content")||"":"";if(d)return e;this.setValue(e);return null}}function m(a){return function(d,e,b,f){f.removeAttribute("margin"+a);d=this.getValue();""!==d?f.setStyle("margin-"+a,CKEDITOR.tools.cssLength(d)):f.removeStyle("margin-"+a)}}function n(a,d,e){a.removeStyle(d);a.getComputedStyle(d)!=e&&a.setStyle(d, +e)}var c=g.lang.docprops,h=g.lang.common,k={},o=function(a,d,e){return{type:"hbox",padding:0,widths:["60%","40%"],children:[CKEDITOR.tools.extend({type:"text",id:a,label:c[d]},e||{},1),{type:"button",id:a+"Choose",label:c.chooseColor,className:"colorChooser",onClick:function(){var b=this;p("colordialog",function(d){var e=b.getDialog();e.getContentElement(e._.currentTabId,a).setValue(d.getContentElement("picker","selectedColor").getValue())})}}]}},q="javascript:void((function(){"+encodeURIComponent("document.open();"+ +(CKEDITOR.env.ie?"("+CKEDITOR.tools.fixDomain+")();":"")+'document.write( \''+c.previewHtml+"' );document.close();")+"})())";return{title:c.title,minHeight:330,minWidth:500,onShow:function(){for(var a=g.document,d=a.getElementsByTag("html").getItem(0),e=a.getHead(),b=a.getBody(),f={},c=a.getElementsByTag("meta"),h=c.count(),i=0;i'],["XHTML 1.0 Transitional",''],["XHTML 1.0 Strict",''],["XHTML 1.0 Frameset",''], +["HTML 5",""],["HTML 4.01 Transitional",''],["HTML 4.01 Strict",''],["HTML 4.01 Frameset",''],["HTML 3.2",''],["HTML 2.0",''],[c.other, +"other"]],onChange:l,setup:function(){if(g.docType&&(this.setValue(g.docType),!this.getValue())){this.setValue("other");var a=this.getDialog().getContentElement("general","docTypeOther");a&&a.setValue(g.docType)}l.call(this)},commit:function(a,d,c,b,f){f||(a=this.getValue(),d=this.getDialog().getContentElement("general","docTypeOther"),g.docType="other"==a?d?d.getValue():"":a)}},{type:"text",id:"docTypeOther",label:c.docTypeOther}]},{type:"checkbox",id:"xhtmlDec",label:c.xhtmlDec,setup:function(){this.setValue(!!g.xmlDeclaration)}, +commit:function(a,d,c,b,f){f||(this.getValue()?(g.xmlDeclaration='',d.setAttribute("xmlns","http://www.w3.org/1999/xhtml")):(g.xmlDeclaration="",d.removeAttribute("xmlns")))}}]},{id:"design",label:c.design,elements:[{type:"hbox",widths:["60%","40%"],children:[{type:"vbox",children:[o("txtColor","txtColor",{setup:function(a,d,c,b){this.setValue(b.getComputedStyle("color"))},commit:function(a,d,c,b,f){if(this.isChanged()|| +f)b.removeAttribute("text"),(a=this.getValue())?b.setStyle("color",a):b.removeStyle("color")}}),o("bgColor","bgColor",{setup:function(a,d,c,b){a=b.getComputedStyle("background-color")||"";this.setValue("transparent"==a?"":a)},commit:function(a,d,c,b,f){if(this.isChanged()||f)b.removeAttribute("bgcolor"),(a=this.getValue())?b.setStyle("background-color",a):n(b,"background-color","transparent")}}),{type:"hbox",widths:["60%","40%"],padding:1,children:[{type:"text",id:"bgImage",label:c.bgImage,setup:function(a, +d,c,b){a=b.getComputedStyle("background-image")||"";a="none"==a?"":a.replace(/url\(\s*(["']?)\s*([^\)]*)\s*\1\s*\)/i,function(a,b,d){return d});this.setValue(a)},commit:function(a,d,c,b){b.removeAttribute("background");(a=this.getValue())?b.setStyle("background-image","url("+a+")"):n(b,"background-image","none")}},{type:"button",id:"bgImageChoose",label:h.browseServer,style:"display:inline-block;margin-top:10px;",hidden:!0,filebrowser:"design:bgImage"}]},{type:"checkbox",id:"bgFixed",label:c.bgFixed, +setup:function(a,d,c,b){this.setValue("fixed"==b.getComputedStyle("background-attachment"))},commit:function(a,d,c,b){this.getValue()?b.setStyle("background-attachment","fixed"):n(b,"background-attachment","scroll")}}]},{type:"vbox",children:[{type:"html",id:"marginTitle",html:'
'+c.margin+"
"},{type:"text",id:"marginTop",label:c.marginTop,style:"width: 80px; text-align: center",align:"center",inputStyle:"text-align: center", +setup:function(a,d,c,b){this.setValue(b.getStyle("margin-top")||b.getAttribute("margintop")||"")},commit:m("top")},{type:"hbox",children:[{type:"text",id:"marginLeft",label:c.marginLeft,style:"width: 80px; text-align: center",align:"center",inputStyle:"text-align: center",setup:function(a,d,c,b){this.setValue(b.getStyle("margin-left")||b.getAttribute("marginleft")||"")},commit:m("left")},{type:"text",id:"marginRight",label:c.marginRight,style:"width: 80px; text-align: center",align:"center",inputStyle:"text-align: center", +setup:function(a,d,c,b){this.setValue(b.getStyle("margin-right")||b.getAttribute("marginright")||"")},commit:m("right")}]},{type:"text",id:"marginBottom",label:c.marginBottom,style:"width: 80px; text-align: center",align:"center",inputStyle:"text-align: center",setup:function(a,c,e,b){this.setValue(b.getStyle("margin-bottom")||b.getAttribute("marginbottom")||"")},commit:m("bottom")}]}]}]},{id:"meta",label:c.meta,elements:[{type:"textarea",id:"metaKeywords",label:c.metaKeywords,setup:j("keywords"), +commit:i("keywords")},{type:"textarea",id:"metaDescription",label:c.metaDescription,setup:j("description"),commit:i("description")},{type:"text",id:"metaAuthor",label:c.metaAuthor,setup:j("author"),commit:i("author")},{type:"text",id:"metaCopyright",label:c.metaCopyright,setup:j("copyright"),commit:i("copyright")}]},{id:"preview",label:h.preview,elements:[{type:"html",id:"previewHtml",html:'',onLoad:function(){var a= +this.getElement();this.getDialog().on("selectPage",function(c){if("preview"==c.data.page){var e=this;setTimeout(function(){var b=a.getFrameDocument(),c=b.getElementsByTag("html").getItem(0),d=b.getHead(),g=b.getBody();e.commitContent(b,c,d,g,1)},50)}});a.getAscendant("table").setStyle("height","100%")}}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/docprops-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/docprops-rtl.png new file mode 100644 index 0000000..ed286a2 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/docprops-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/docprops.png b/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/docprops.png new file mode 100644 index 0000000..8bfdcb9 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/docprops.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png new file mode 100644 index 0000000..4a966da Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/hidpi/docprops.png b/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/hidpi/docprops.png new file mode 100644 index 0000000..a66c869 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/docprops/icons/hidpi/docprops.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/af.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/af.js new file mode 100644 index 0000000..dbda4d7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/af.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","af",{bgColor:"Agtergrond kleur",bgFixed:"Vasgeklemde Agtergrond",bgImage:"Agtergrond Beeld URL",charset:"Karakterstel Kodeering",charsetASCII:"ASCII",charsetCE:"Sentraal Europa",charsetCR:"Cyrillic",charsetCT:"Chinees Traditioneel (Big5)",charsetGR:"Grieks",charsetJP:"Japanees",charsetKR:"Koreans",charsetOther:"Ander Karakterstel Kodeering",charsetTR:"Turks",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Kies",design:"Design",docTitle:"Bladsy Opskrif", +docType:"Dokument Opskrif Soort",docTypeOther:"Ander Dokument Opskrif Soort",label:"Dokument Eienskappe",margin:"Bladsy Rante",marginBottom:"Onder",marginLeft:"Links",marginRight:"Regs",marginTop:"Bo",meta:"Meta Data",metaAuthor:"Skrywer",metaCopyright:"Kopiereg",metaDescription:"Dokument Beskrywing",metaKeywords:"Dokument Index Sleutelwoorde(comma verdeelt)",other:"",previewHtml:'

This is some sample text. You are using CKEditor.

',title:"Dokument Eienskappe", +txtColor:"Tekskleur",xhtmlDec:"Voeg XHTML verklaring by"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ar.js new file mode 100644 index 0000000..bd26b49 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ar.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","ar",{bgColor:"لون الخلفية",bgFixed:"جعلها علامة مائية",bgImage:"رابط الصورة الخلفية",charset:"ترميز الحروف",charsetASCII:"ASCII",charsetCE:"أوروبا الوسطى",charsetCR:"السيريلية",charsetCT:"الصينية التقليدية (Big5)",charsetGR:"اليونانية",charsetJP:"اليابانية",charsetKR:"الكورية",charsetOther:"ترميز آخر",charsetTR:"التركية",charsetUN:"Unicode (UTF-8)",charsetWE:"أوروبا الغربية",chooseColor:"اختر",design:"تصميم",docTitle:"عنوان الصفحة",docType:"ترويسة نوع الصفحة", +docTypeOther:"ترويسة نوع صفحة أخرى",label:"خصائص الصفحة",margin:"هوامش الصفحة",marginBottom:"سفلي",marginLeft:"أيسر",marginRight:"أيمن",marginTop:"علوي",meta:"المعرّفات الرأسية",metaAuthor:"الكاتب",metaCopyright:"المالك",metaDescription:"وصف الصفحة",metaKeywords:"الكلمات الأساسية (مفصولة بفواصل)َ",other:"<أخرى>",previewHtml:'

هذه مجرد كتابة بسيطةمن أجل التمثيل. CKEditor.

',title:"خصائص الصفحة",txtColor:"لون النص",xhtmlDec:"تضمين إعلانات لغة XHTMLَ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/bg.js new file mode 100644 index 0000000..5faba47 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/bg.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","bg",{bgColor:"Фон",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Кодова таблица",charsetASCII:"ASCII",charsetCE:"Централна европейска",charsetCR:"Cyrillic",charsetCT:"Китайски традиционен",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Друга кодова таблица",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Изберете",design:"Дизайн",docTitle:"Заглавие на страницата", +docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Настройки на документа",margin:"Page Margins",marginBottom:"Долу",marginLeft:"Ляво",marginRight:"Дясно",marginTop:"Горе",meta:"Мета етикети",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Други...",previewHtml:'

This is some sample text. You are using CKEditor.

', +title:"Настройки на документа",txtColor:"Цвят на шрифт",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/bn.js new file mode 100644 index 0000000..838cbc8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/bn.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","bn",{bgColor:"ব্যাকগ্রাউন্ড রং",bgFixed:"স্ক্রলহীন ব্যাকগ্রাউন্ড",bgImage:"ব্যাকগ্রাউন্ড ছবির URL",charset:"ক্যারেক্টার সেট এনকোডিং",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"অন্য ক্যারেক্টার সেট এনকোডিং",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design",docTitle:"পেজ শীর্ষক", +docType:"ডক্যুমেন্ট টাইপ হেডিং",docTypeOther:"অন্য ডক্যুমেন্ট টাইপ হেডিং",label:"ডক্যুমেন্ট প্রোপার্টি",margin:"পেজ মার্জিন",marginBottom:"নীচে",marginLeft:"বামে",marginRight:"ডানে",marginTop:"উপর",meta:"মেটাডেটা",metaAuthor:"লেখক",metaCopyright:"কপীরাইট",metaDescription:"ডক্যূমেন্ট বর্ণনা",metaKeywords:"ডক্যুমেন্ট ইন্ডেক্স কিওয়ার্ড (কমা দ্বারা বিচ্ছিন্ন)",other:"",previewHtml:'

This is some sample text. You are using CKEditor.

',title:"ডক্যুমেন্ট প্রোপার্টি", +txtColor:"টেক্স্ট রং",xhtmlDec:"XHTML ডেক্লারেশন যুক্ত কর"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/bs.js new file mode 100644 index 0000000..624acfc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/bs.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","bs",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Dno",marginLeft:"Lijevo",marginRight:"Desno",marginTop:"Vrh",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

This is some sample text. You are using CKEditor.

', +title:"Document Properties",txtColor:"Boja teksta",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ca.js new file mode 100644 index 0000000..6eafe7f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ca",{bgColor:"Color de fons",bgFixed:"Fons sense desplaçament (Fixe)",bgImage:"URL de la imatge de fons",charset:"Codificació de conjunt de caràcters",charsetASCII:"ASCII",charsetCE:"Europeu Central",charsetCR:"Ciríl·lic",charsetCT:"Xinès tradicional (Big5)",charsetGR:"Grec",charsetJP:"Japonès",charsetKR:"Coreà",charsetOther:"Una altra codificació de caràcters",charsetTR:"Turc",charsetUN:"Unicode (UTF-8)",charsetWE:"Europeu occidental",chooseColor:"Triar",design:"Disseny", +docTitle:"Títol de la pàgina",docType:"Capçalera de tipus de document",docTypeOther:"Un altra capçalera de tipus de document",label:"Propietats del document",margin:"Marges de pàgina",marginBottom:"Peu",marginLeft:"Esquerra",marginRight:"Dreta",marginTop:"Cap",meta:"Metadades",metaAuthor:"Autor",metaCopyright:"Copyright",metaDescription:"Descripció del document",metaKeywords:"Paraules clau per a indexació (separats per coma)",other:"Altre...",previewHtml:'

Aquest és un text d\'exemple. Estàs utilitzant CKEditor.

', +title:"Propietats del document",txtColor:"Color de Text",xhtmlDec:"Incloure declaracions XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/cs.js new file mode 100644 index 0000000..568bac8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/cs.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","cs",{bgColor:"Barva pozadí",bgFixed:"Nerolovatelné (Pevné) pozadí",bgImage:"URL obrázku na pozadí",charset:"Znaková sada",charsetASCII:"ASCII",charsetCE:"Středoevropské jazyky",charsetCR:"Cyrilice",charsetCT:"Tradiční čínština (Big5)",charsetGR:"Řečtina",charsetJP:"Japonština",charsetKR:"Korejština",charsetOther:"Další znaková sada",charsetTR:"Turečtina",charsetUN:"Unicode (UTF-8)",charsetWE:"Západoevropské jazyky",chooseColor:"Výběr",design:"Vzhled",docTitle:"Titulek stránky", +docType:"Typ dokumentu",docTypeOther:"Jiný typ dokumetu",label:"Vlastnosti dokumentu",margin:"Okraje stránky",marginBottom:"Dolní",marginLeft:"Levý",marginRight:"Pravý",marginTop:"Horní",meta:"Metadata",metaAuthor:"Autor",metaCopyright:"Autorská práva",metaDescription:"Popis dokumentu",metaKeywords:"Klíčová slova (oddělená čárkou)",other:"",previewHtml:'

Toto je ukázkový text. Používáte CKEditor.

',title:"Vlastnosti dokumentu",txtColor:"Barva textu", +xhtmlDec:"Zahrnout deklarace XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/cy.js new file mode 100644 index 0000000..ef7e1cc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/cy.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","cy",{bgColor:"Lliw Cefndir",bgFixed:"Cefndir Sefydlog (Ddim yn Sgrolio)",bgImage:"URL Delwedd Cefndir",charset:"Amgodio Set Nodau",charsetASCII:"ASCII",charsetCE:"Ewropeaidd Canol",charsetCR:"Syrilig",charsetCT:"Tsieinëeg Traddodiadol (Big5)",charsetGR:"Groeg",charsetJP:"Siapanëeg",charsetKR:"Corëeg",charsetOther:"Amgodio Set Nodau Arall",charsetTR:"Tyrceg",charsetUN:"Unicode (UTF-8)",charsetWE:"Ewropeaidd Gorllewinol",chooseColor:"Dewis",design:"Cynllunio",docTitle:"Teitl y Dudalen", +docType:"Pennawd Math y Ddogfen",docTypeOther:"Pennawd Math y Ddogfen Arall",label:"Priodweddau Dogfen",margin:"Ffin y Dudalen",marginBottom:"Gwaelod",marginLeft:"Chwith",marginRight:"Dde",marginTop:"Brig",meta:"Tagiau Meta",metaAuthor:"Awdur",metaCopyright:"Hawlfraint",metaDescription:"Disgrifiad y Ddogfen",metaKeywords:"Allweddeiriau Indecsio Dogfen (gwahanu gyda choma)",other:"Arall...",previewHtml:'

Dyma ychydig o destun sampl. Rydych chi\'n defnyddio CKEditor.

', +title:"Priodweddau Dogfen",txtColor:"Lliw y Testun",xhtmlDec:"Cynnwys Datganiadau XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/da.js new file mode 100644 index 0000000..0a10cf0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/da.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","da",{bgColor:"Baggrundsfarve",bgFixed:"Fastlåst baggrund",bgImage:"Baggrundsbillede URL",charset:"Tegnsætskode",charsetASCII:"ASCII",charsetCE:"Centraleuropæisk",charsetCR:"Kyrillisk",charsetCT:"Traditionel kinesisk (Big5)",charsetGR:"Græsk",charsetJP:"Japansk",charsetKR:"Koreansk",charsetOther:"Anden tegnsætskode",charsetTR:"Tyrkisk",charsetUN:"Unicode (UTF-8)",charsetWE:"Vesteuropæisk",chooseColor:"Vælg",design:"Design",docTitle:"Sidetitel",docType:"Dokumenttype kategori", +docTypeOther:"Anden dokumenttype kategori",label:"Egenskaber for dokument",margin:"Sidemargen",marginBottom:"Nederst",marginLeft:"Venstre",marginRight:"Højre",marginTop:"Øverst",meta:"Metatags",metaAuthor:"Forfatter",metaCopyright:"Copyright",metaDescription:"Dokumentbeskrivelse",metaKeywords:"Dokument index nøgleord (kommasepareret)",other:"",previewHtml:'

Dette er et eksempel på noget tekst. Du benytter CKEditor.

',title:"Egenskaber for dokument", +txtColor:"Tekstfarve",xhtmlDec:"Inkludere XHTML deklartion"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/de.js new file mode 100644 index 0000000..6b32751 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/de.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","de",{bgColor:"Hintergrundfarbe",bgFixed:"Nichtrollender (feststehender) Hintergrund",bgImage:"Hintergrundbild-URL",charset:"Zeichensatzkodierung",charsetASCII:"ASCII",charsetCE:"Zentraleuropäisch",charsetCR:"Kyrillisch",charsetCT:"Traditionelles Chinesisch (Big5)",charsetGR:"Griechisch",charsetJP:"Japanisch",charsetKR:"Koreanisch",charsetOther:"Andere Zeichensatzkodierung",charsetTR:"Türkisch",charsetUN:"Unicode (UTF-8)",charsetWE:"Westeuropäisch",chooseColor:"Auswählen", +design:"Design",docTitle:"Seitentitel",docType:"Dokumententypüberschrift",docTypeOther:"Andere Dokumententypüberschrift",label:"Dokumenteigenschaften",margin:"Seitenränder",marginBottom:"Unten",marginLeft:"Links",marginRight:"Rechts",marginTop:"Oben",meta:"Metadaten",metaAuthor:"Autor",metaCopyright:"Copyright",metaDescription:"Dokumentbeschreibung",metaKeywords:"Schlüsselwörter (durch Komma getrennt)",other:"Andere...",previewHtml:'

Das ist ein Beispieltext. Du schreibst in CKEditor.

', +title:"Dokumenteigenschaften",txtColor:"Textfarbe",xhtmlDec:"Beziehe XHTML Deklarationen ein"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/el.js new file mode 100644 index 0000000..3f0999c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/el.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","el",{bgColor:"Χρώμα Φόντου",bgFixed:"Φόντο Χωρίς Κύλιση (Σταθερό)",bgImage:"Διεύθυνση Εικόνας Φόντου",charset:"Κωδικοποίηση Χαρακτήρων",charsetASCII:"ASCII",charsetCE:"Κεντρικής Ευρώπης",charsetCR:"Κυριλλική",charsetCT:"Παραδοσιακή Κινέζικη (Big5)",charsetGR:"Ελληνική",charsetJP:"Ιαπωνική",charsetKR:"Κορεάτικη",charsetOther:"Άλλη Κωδικοποίηση Χαρακτήρων",charsetTR:"Τουρκική",charsetUN:"Διεθνής (UTF-8)",charsetWE:"Δυτικής Ευρώπης",chooseColor:"Επιλέξτε",design:"Σχεδιασμός", +docTitle:"Τίτλος Σελίδας",docType:"Κεφαλίδα Τύπου Εγγράφου",docTypeOther:"Άλλη Κεφαλίδα Τύπου Εγγράφου",label:"Ιδιότητες Εγγράφου",margin:"Περιθώρια Σελίδας",marginBottom:"Κάτω",marginLeft:"Αριστερά",marginRight:"Δεξιά",marginTop:"Κορυφή",meta:"Μεταδεδομένα",metaAuthor:"Δημιουργός",metaCopyright:"Πνευματικά Δικαιώματα",metaDescription:"Περιγραφή Εγγράφου",metaKeywords:"Λέξεις κλειδιά δείκτες εγγράφου (διαχωρισμός με κόμμα)",other:"Άλλο...",previewHtml:'

Αυτό είναι ένα παραδειγματικό κείμενο. Χρησιμοποιείτε το CKEditor.

', +title:"Ιδιότητες Εγγράφου",txtColor:"Χρώμα Κειμένου",xhtmlDec:"Να Συμπεριληφθούν οι Δηλώσεις XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en-au.js new file mode 100644 index 0000000..1991fce --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en-au.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","en-au",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

This is some sample text. You are using CKEditor.

', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en-ca.js new file mode 100644 index 0000000..f135acf --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en-ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","en-ca",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

This is some sample text. You are using CKEditor.

', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en-gb.js new file mode 100644 index 0000000..4ae5c6f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en-gb.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","en-gb",{bgColor:"Background Colour",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma-separated)",other:"Other...",previewHtml:'

This is some sample text. You are using CKEditor.

', +title:"Document Properties",txtColor:"Text Colour",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en.js new file mode 100644 index 0000000..73926df --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/en.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","en",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

This is some sample text. You are using CKEditor.

', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/eo.js new file mode 100644 index 0000000..182ea18 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/eo.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","eo",{bgColor:"Fona Koloro",bgFixed:"Neruluma Fono",bgImage:"URL de Fona Bildo",charset:"Signara Kodo",charsetASCII:"ASCII",charsetCE:"Centra Eŭropa",charsetCR:"Cirila",charsetCT:"Tradicia Ĉina (Big5)",charsetGR:"Greka",charsetJP:"Japana",charsetKR:"Korea",charsetOther:"Alia Signara Kodo",charsetTR:"Turka",charsetUN:"Unikodo (UTF-8)",charsetWE:"Okcidenta Eŭropa",chooseColor:"Elektu",design:"Dizajno",docTitle:"Paĝotitolo",docType:"Dokumenta Tipo",docTypeOther:"Alia Dokumenta Tipo", +label:"Dokumentaj Atributoj",margin:"Paĝaj Marĝenoj",marginBottom:"Malsupra",marginLeft:"Maldekstra",marginRight:"Dekstra",marginTop:"Supra",meta:"Metadatenoj",metaAuthor:"Verkinto",metaCopyright:"Kopirajto",metaDescription:"Dokumenta Priskribo",metaKeywords:"Ŝlosilvortoj de la Dokumento (apartigitaj de komoj)",other:"",previewHtml:'

Tio estas sampla teksto. Vi estas uzanta CKEditor.

',title:"Dokumentaj Atributoj",txtColor:"Teksta Koloro", +xhtmlDec:"Inkluzivi XHTML Deklarojn"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/es.js new file mode 100644 index 0000000..8170464 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/es.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","es",{bgColor:"Color de fondo",bgFixed:"Fondo fijo (no se desplaza)",bgImage:"Imagen de fondo",charset:"Codificación de caracteres",charsetASCII:"ASCII",charsetCE:"Centro Europeo",charsetCR:"Ruso",charsetCT:"Chino Tradicional (Big5)",charsetGR:"Griego",charsetJP:"Japonés",charsetKR:"Koreano",charsetOther:"Otra codificación de caracteres",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europeo occidental",chooseColor:"Elegir",design:"Diseño",docTitle:"Título de página", +docType:"Tipo de documento",docTypeOther:"Otro tipo de documento",label:"Propiedades del documento",margin:"Márgenes",marginBottom:"Inferior",marginLeft:"Izquierdo",marginRight:"Derecho",marginTop:"Superior",meta:"Meta Tags",metaAuthor:"Autor",metaCopyright:"Copyright",metaDescription:"Descripción del documento",metaKeywords:"Palabras claves del documento separadas por coma (meta keywords)",other:"Otro...",previewHtml:'

Este es un texto de ejemplo. Usted está usando CKEditor.

', +title:"Propiedades del documento",txtColor:"Color del texto",xhtmlDec:"Incluir declaración XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/et.js new file mode 100644 index 0000000..43ad55d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/et.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","et",{bgColor:"Taustavärv",bgFixed:"Mittekeritav tagataust",bgImage:"Taustapildi URL",charset:"Märgistiku kodeering",charsetASCII:"ASCII",charsetCE:"Kesk-Euroopa",charsetCR:"Kirillisa",charsetCT:"Hiina traditsiooniline (Big5)",charsetGR:"Kreeka",charsetJP:"Jaapani",charsetKR:"Korea",charsetOther:"Ülejäänud märgistike kodeeringud",charsetTR:"Türgi",charsetUN:"Unicode (UTF-8)",charsetWE:"Lääne-Euroopa",chooseColor:"Vali",design:"Disain",docTitle:"Lehekülje tiitel", +docType:"Dokumendi tüüppäis",docTypeOther:"Teised dokumendi tüüppäised",label:"Dokumendi omadused",margin:"Lehekülje äärised",marginBottom:"Alaserv",marginLeft:"Vasakserv",marginRight:"Paremserv",marginTop:"Ülaserv",meta:"Meta andmed",metaAuthor:"Autor",metaCopyright:"Autoriõigus",metaDescription:"Dokumendi kirjeldus",metaKeywords:"Dokumendi võtmesõnad (eraldatud komadega)",other:"",previewHtml:'

See on näidistekst. Sa kasutad CKEditori.

', +title:"Dokumendi omadused",txtColor:"Teksti värv",xhtmlDec:"Arva kaasa XHTML deklaratsioonid"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/eu.js new file mode 100644 index 0000000..16175cc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/eu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","eu",{bgColor:"Atzeko Kolorea",bgFixed:"Korritze gabeko Atzealdea",bgImage:"Atzeko Irudiaren URL-a",charset:"Karaktere Multzoaren Kodeketa",charsetASCII:"ASCII",charsetCE:"Erdialdeko Europakoa",charsetCR:"Zirilikoa",charsetCT:"Txinatar Tradizionala (Big5)",charsetGR:"Grekoa",charsetJP:"Japoniarra",charsetKR:"Korearra",charsetOther:"Beste Karaktere Multzoko Kodeketa",charsetTR:"Turkiarra",charsetUN:"Unicode (UTF-8)",charsetWE:"Mendebaldeko Europakoa",chooseColor:"Choose", +design:"Diseinua",docTitle:"Orriaren Izenburua",docType:"Document Type Goiburua",docTypeOther:"Beste Document Type Goiburua",label:"Dokumentuaren Ezarpenak",margin:"Orrialdearen marjinak",marginBottom:"Behean",marginLeft:"Ezkerrean",marginRight:"Eskuman",marginTop:"Goian",meta:"Meta Informazioa",metaAuthor:"Egilea",metaCopyright:"Copyright",metaDescription:"Dokumentuaren Deskribapena",metaKeywords:"Dokumentuaren Gako-hitzak (komarekin bananduta)",other:"",previewHtml:'

Hau adibideko testua da. CKEditor erabiltzen ari zara.

', +title:"Dokumentuaren Ezarpenak",txtColor:"Testu Kolorea",xhtmlDec:"XHTML Ezarpenak"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fa.js new file mode 100644 index 0000000..078e383 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fa.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","fa",{bgColor:"رنگ پس​زمینه",bgFixed:"پس​زمینهٴ ثابت (بدون حرکت)",bgImage:"URL تصویر پسزمینه",charset:"رمزگذاری نویسه​گان",charsetASCII:"اسکی",charsetCE:"اروپای مرکزی",charsetCR:"سیریلیک",charsetCT:"چینی رسمی (Big5)",charsetGR:"یونانی",charsetJP:"ژاپنی",charsetKR:"کره​ای",charsetOther:"رمزگذاری نویسه​گان دیگر",charsetTR:"ترکی",charsetUN:"یونیکد (UTF-8)",charsetWE:"اروپای غربی",chooseColor:"انتخاب",design:"طراحی",docTitle:"عنوان صفحه",docType:"عنوان نوع سند",docTypeOther:"عنوان نوع سند دیگر", +label:"ویژگی​های سند",margin:"حاشیه​های صفحه",marginBottom:"پایین",marginLeft:"چپ",marginRight:"راست",marginTop:"بالا",meta:"فراداده",metaAuthor:"نویسنده",metaCopyright:"حق انتشار",metaDescription:"توصیف سند",metaKeywords:"کلیدواژگان نمایه​گذاری سند (با کاما جدا شوند)",other:"<سایر>",previewHtml:'

این یک متن نمونه است. شما در حال استفاده از CKEditor هستید.

',title:"ویژگی​های سند",txtColor:"رنگ متن",xhtmlDec:"شامل تعاریف XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fi.js new file mode 100644 index 0000000..22a9740 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","fi",{bgColor:"Taustaväri",bgFixed:"Paikallaanpysyvä tausta",bgImage:"Taustakuva",charset:"Merkistökoodaus",charsetASCII:"ASCII",charsetCE:"Keskieurooppalainen",charsetCR:"Kyrillinen",charsetCT:"Kiina, perinteinen (Big5)",charsetGR:"Kreikka",charsetJP:"Japani",charsetKR:"Korealainen",charsetOther:"Muu merkistökoodaus",charsetTR:"Turkkilainen",charsetUN:"Unicode (UTF-8)",charsetWE:"Länsieurooppalainen",chooseColor:"Valitse",design:"Sommittelu",docTitle:"Sivun nimi", +docType:"Dokumentin tyyppi",docTypeOther:"Muu dokumentin tyyppi",label:"Dokumentin ominaisuudet",margin:"Sivun marginaalit",marginBottom:"Ala",marginLeft:"Vasen",marginRight:"Oikea",marginTop:"Ylä",meta:"Metatieto",metaAuthor:"Tekijä",metaCopyright:"Tekijänoikeudet",metaDescription:"Kuvaus",metaKeywords:"Hakusanat (pilkulla erotettuna)",other:"",previewHtml:'

Tämä on esimerkkitekstiä. Käytät juuri CKEditoria.

',title:"Dokumentin ominaisuudet", +txtColor:"Tekstiväri",xhtmlDec:"Lisää XHTML julistukset"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fo.js new file mode 100644 index 0000000..ef35269 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fo.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","fo",{bgColor:"Bakgrundslitur",bgFixed:"Læst bakgrund (rullar ikki)",bgImage:"Leið til bakgrundsmynd (URL)",charset:"Teknsett koda",charsetASCII:"ASCII",charsetCE:"Miðeuropa",charsetCR:"Cyrilliskt",charsetCT:"Kinesiskt traditionelt (Big5)",charsetGR:"Grikst",charsetJP:"Japanskt",charsetKR:"Koreanskt",charsetOther:"Onnur teknsett koda",charsetTR:"Turkiskt",charsetUN:"Unicode (UTF-8)",charsetWE:"Vestureuropa",chooseColor:"Vel",design:"Design",docTitle:"Síðuheiti", +docType:"Dokumentslag yvirskrift",docTypeOther:"Annað dokumentslag yvirskrift",label:"Eginleikar fyri dokument",margin:"Síðubreddar",marginBottom:"Niðast",marginLeft:"Vinstra",marginRight:"Høgra",marginTop:"Ovast",meta:"META-upplýsingar",metaAuthor:"Høvundur",metaCopyright:"Upphavsrættindi",metaDescription:"Dokumentlýsing",metaKeywords:"Dokument index lyklaorð (sundurbýtt við komma)",other:"",previewHtml:'

Hetta er ein royndartekstur. Tygum brúka CKEditor.

', +title:"Eginleikar fyri dokument",txtColor:"Tekstlitur",xhtmlDec:"Viðfest XHTML deklaratiónir"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fr-ca.js new file mode 100644 index 0000000..31a809e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fr-ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","fr-ca",{bgColor:"Couleur de fond",bgFixed:"Image fixe sans défilement",bgImage:"Image de fond",charset:"Encodage",charsetASCII:"ACSII",charsetCE:"Europe Centrale",charsetCR:"Cyrillique",charsetCT:"Chinois Traditionnel (Big5)",charsetGR:"Grecque",charsetJP:"Japonais",charsetKR:"Coréen",charsetOther:"Autre encodage",charsetTR:"Turque",charsetUN:"Unicode (UTF-8)",charsetWE:"Occidental",chooseColor:"Sélectionner",design:"Design",docTitle:"Titre de la page",docType:"Type de document", +docTypeOther:"Autre type de document",label:"Propriétés du document",margin:"Marges",marginBottom:"Bas",marginLeft:"Gauche",marginRight:"Droite",marginTop:"Haut",meta:"Méta-données",metaAuthor:"Auteur",metaCopyright:"Copyright",metaDescription:"Description",metaKeywords:"Mots-clés (séparés par des virgules)",other:"Autre...",previewHtml:'

Voici un example de texte. Vous utilisez CKEditor.

',title:"Propriétés du document",txtColor:"Couleur de caractère", +xhtmlDec:"Inclure les déclarations XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fr.js new file mode 100644 index 0000000..f22e249 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/fr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","fr",{bgColor:"Couleur de fond",bgFixed:"Image fixe sans défilement",bgImage:"Image de fond",charset:"Encodage de caractère",charsetASCII:"ASCII",charsetCE:"Europe Centrale",charsetCR:"Cyrillique",charsetCT:"Chinois Traditionnel (Big5)",charsetGR:"Grec",charsetJP:"Japonais",charsetKR:"Coréen",charsetOther:"Autre encodage de caractère",charsetTR:"Turc",charsetUN:"Unicode (UTF-8)",charsetWE:"Occidental",chooseColor:"Choisissez",design:"Design",docTitle:"Titre de la page", +docType:"Type de document",docTypeOther:"Autre type de document",label:"Propriétés du document",margin:"Marges",marginBottom:"Bas",marginLeft:"Gauche",marginRight:"Droite",marginTop:"Haut",meta:"Métadonnées",metaAuthor:"Auteur",metaCopyright:"Copyright",metaDescription:"Description",metaKeywords:"Mots-clés (séparés par des virgules)",other:"",previewHtml:'

Ceci est un texte d\'exemple. Vous utilisez CKEditor.

',title:"Propriétés du document", +txtColor:"Couleur de texte",xhtmlDec:"Inclure les déclarations XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/gl.js new file mode 100644 index 0000000..f8b0c21 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/gl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","gl",{bgColor:"Cor do fondo",bgFixed:"Fondo fixo (non se despraza)",bgImage:"URL da imaxe do fondo",charset:"Codificación de caracteres",charsetASCII:"ASCII",charsetCE:"Centro europeo",charsetCR:"Cirílico",charsetCT:"Chinés tradicional (Big5)",charsetGR:"Grego",charsetJP:"Xaponés",charsetKR:"Coreano",charsetOther:"Outra codificación de caracteres",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europeo occidental",chooseColor:"Escoller",design:"Deseño", +docTitle:"Título da páxina",docType:"Cabeceira do tipo de documento",docTypeOther:"Outra cabeceira do tipo de documento",label:"Propiedades do documento",margin:"Marxes da páxina",marginBottom:"Abaixo",marginLeft:"Esquerda",marginRight:"Dereita",marginTop:"Arriba",meta:"Meta etiquetas",metaAuthor:"Autor",metaCopyright:"Dereito de autoría",metaDescription:"Descrición do documento",metaKeywords:"Palabras clave de indexación do documento (separadas por comas)",other:"Outro...",previewHtml:'

Este é un texto de exemplo. Vostede esta a empregar o CKEditor.

', +title:"Propiedades do documento",txtColor:"Cor do texto",xhtmlDec:"Incluír as declaracións XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/gu.js new file mode 100644 index 0000000..7458ffe --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/gu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","gu",{bgColor:"બૅકગ્રાઉન્ડ રંગ",bgFixed:"સ્ક્રોલ ન થાય તેવું બૅકગ્રાઉન્ડ",bgImage:"બૅકગ્રાઉન્ડ ચિત્ર URL",charset:"કેરેક્ટર સેટ એન્કોડિંગ",charsetASCII:"ASCII",charsetCE:"મધ્ય યુરોપિઅન (Central European)",charsetCR:"સિરીલિક (Cyrillic)",charsetCT:"ચાઇનીઝ (Chinese Traditional Big5)",charsetGR:"ગ્રીક (Greek)",charsetJP:"જાપાનિઝ (Japanese)",charsetKR:"કોરીયન (Korean)",charsetOther:"અન્ય કેરેક્ટર સેટ એન્કોડિંગ",charsetTR:"ટર્કિ (Turkish)",charsetUN:"યૂનિકોડ (UTF-8)", +charsetWE:"પશ્ચિમ યુરોપિઅન (Western European)",chooseColor:"વિકલ્પ",design:"ડીસા",docTitle:"પેજ મથાળું/ટાઇટલ",docType:"ડૉક્યુમન્ટ પ્રકાર શીર્ષક",docTypeOther:"અન્ય ડૉક્યુમન્ટ પ્રકાર શીર્ષક",label:"ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ",margin:"પેજ માર્જિન",marginBottom:"નીચે",marginLeft:"ડાબી",marginRight:"જમણી",marginTop:"ઉપર",meta:"મેટાડૅટા",metaAuthor:"લેખક",metaCopyright:"કૉપિરાઇટ",metaDescription:"ડૉક્યુમન્ટ વર્ણન",metaKeywords:"ડૉક્યુમન્ટ ઇન્ડેક્સ સંકેતશબ્દ (અલ્પવિરામ (,) થી અલગ કરો)",other:"",previewHtml:'

આ એક સેમ્પલ ટેક્ષ્ત્ છે. તમે CKEditor વાપરો છો.

', +title:"ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ",txtColor:"શબ્દનો રંગ",xhtmlDec:"XHTML સૂચના સમાવિષ્ટ કરવી"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/he.js new file mode 100644 index 0000000..d71d158 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/he.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","he",{bgColor:"צבע רקע",bgFixed:"רקע לא נגלל (צמוד)",bgImage:"כתובת של תמונת רקע",charset:"קידוד תווים",charsetASCII:"ASCII",charsetCE:"מרכז אירופאי",charsetCR:"קירילי",charsetCT:"סיני מסורתי (Big5)",charsetGR:"יווני",charsetJP:"יפני",charsetKR:"קוריאני",charsetOther:"קידוד תווים אחר",charsetTR:"טורקי",charsetUN:"יוניקוד (UTF-8)",charsetWE:"מערב אירופאי",chooseColor:"בחירה",design:"עיצוב",docTitle:"כותרת עמוד",docType:"כותר סוג מסמך",docTypeOther:"כותר סוג מסמך אחר", +label:"מאפייני מסמך",margin:"מרווחי עמוד",marginBottom:"תחתון",marginLeft:"שמאלי",marginRight:"ימני",marginTop:"עליון",meta:"תגי Meta",metaAuthor:"מחבר/ת",metaCopyright:"זכויות יוצרים",metaDescription:"תיאור המסמך",metaKeywords:"מילות מפתח של המסמך (מופרדות בפסיק)",other:"אחר...",previewHtml:'

זהו טקסט הדגמה. את/ה משתמש/ת בCKEditor.

',title:"מאפייני מסמך",txtColor:"צבע טקסט",xhtmlDec:"כלול הכרזות XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/hi.js new file mode 100644 index 0000000..6826618 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/hi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","hi",{bgColor:"बैक्ग्राउन्ड रंग",bgFixed:"स्क्रॉल न करने वाला बैक्ग्राउन्ड",bgImage:"बैक्ग्राउन्ड तस्वीर URL",charset:"करेक्टर सॅट ऍन्कोडिंग",charsetASCII:"ASCII",charsetCE:"मध्य यूरोपीय (Central European)",charsetCR:"सिरीलिक (Cyrillic)",charsetCT:"चीनी (Chinese Traditional Big5)",charsetGR:"यवन (Greek)",charsetJP:"जापानी (Japanese)",charsetKR:"कोरीयन (Korean)",charsetOther:"अन्य करेक्टर सॅट ऍन्कोडिंग",charsetTR:"तुर्की (Turkish)",charsetUN:"यूनीकोड (UTF-8)",charsetWE:"पश्चिम यूरोपीय (Western European)", +chooseColor:"Choose",design:"Design",docTitle:"पेज शीर्षक",docType:"डॉक्यूमॅन्ट प्रकार शीर्षक",docTypeOther:"अन्य डॉक्यूमॅन्ट प्रकार शीर्षक",label:"डॉक्यूमॅन्ट प्रॉपर्टीज़",margin:"पेज मार्जिन",marginBottom:"नीचे",marginLeft:"बायें",marginRight:"दायें",marginTop:"ऊपर",meta:"मॅटाडेटा",metaAuthor:"लेखक",metaCopyright:"कॉपीराइट",metaDescription:"डॉक्यूमॅन्ट करॅक्टरन",metaKeywords:"डॉक्युमॅन्ट इन्डेक्स संकेतशब्द (अल्पविराम से अलग करें)",other:"<अन्य>",previewHtml:'

This is some sample text. You are using CKEditor.

', +title:"डॉक्यूमॅन्ट प्रॉपर्टीज़",txtColor:"टेक्स्ट रंग",xhtmlDec:"XHTML सूचना सम्मिलित करें"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/hr.js new file mode 100644 index 0000000..3477c6f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/hr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","hr",{bgColor:"Boja pozadine",bgFixed:"Pozadine se ne pomiče",bgImage:"URL slike pozadine",charset:"Enkodiranje znakova",charsetASCII:"ASCII",charsetCE:"Središnja Europa",charsetCR:"Ćirilica",charsetCT:"Tradicionalna kineska (Big5)",charsetGR:"Grčka",charsetJP:"Japanska",charsetKR:"Koreanska",charsetOther:"Ostalo enkodiranje znakova",charsetTR:"Turska",charsetUN:"Unicode (UTF-8)",charsetWE:"Zapadna Europa",chooseColor:"Odaberi",design:"Dizajn",docTitle:"Naslov stranice", +docType:"Zaglavlje vrste dokumenta",docTypeOther:"Ostalo zaglavlje vrste dokumenta",label:"Svojstva dokumenta",margin:"Margine stranice",marginBottom:"Dolje",marginLeft:"Lijevo",marginRight:"Desno",marginTop:"Vrh",meta:"Meta Data",metaAuthor:"Autor",metaCopyright:"Autorska prava",metaDescription:"Opis dokumenta",metaKeywords:"Ključne riječi dokumenta (odvojene zarezom)",other:"",previewHtml:'

Ovo je neki primjer teksta. Vi koristite CKEditor.

', +title:"Svojstva dokumenta",txtColor:"Boja teksta",xhtmlDec:"Ubaci XHTML deklaracije"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/hu.js new file mode 100644 index 0000000..beeed2b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/hu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","hu",{bgColor:"Háttérszín",bgFixed:"Nem gördíthető háttér",bgImage:"Háttérkép cím",charset:"Karakterkódolás",charsetASCII:"ASCII",charsetCE:"Közép-Európai",charsetCR:"Cyrill",charsetCT:"Kínai Tradicionális (Big5)",charsetGR:"Görög",charsetJP:"Japán",charsetKR:"Koreai",charsetOther:"Más karakterkódolás",charsetTR:"Török",charsetUN:"Unicode (UTF-8)",charsetWE:"Nyugat-Európai",chooseColor:"Válasszon",design:"Design",docTitle:"Oldalcím",docType:"Dokumentum típus fejléc", +docTypeOther:"Más dokumentum típus fejléc",label:"Dokumentum tulajdonságai",margin:"Oldal margók",marginBottom:"Alsó",marginLeft:"Bal",marginRight:"Jobb",marginTop:"Felső",meta:"Meta adatok",metaAuthor:"Szerző",metaCopyright:"Szerzői jog",metaDescription:"Dokumentum leírás",metaKeywords:"Dokumentum keresőszavak (vesszővel elválasztva)",other:"",previewHtml:'

Ez itt egy példa. A CKEditor-t használod.

',title:"Dokumentum tulajdonságai",txtColor:"Betűszín", +xhtmlDec:"XHTML deklarációk beillesztése"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/id.js new file mode 100644 index 0000000..9716026 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/id.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","id",{bgColor:"Warna Latar Belakang",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Pilih",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bawah",marginLeft:"Kiri",marginRight:"Kanan",marginTop:"Atas",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

This is some sample text. You are using CKEditor.

', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/is.js new file mode 100644 index 0000000..9085a4f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/is.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","is",{bgColor:"Bakgrunnslitur",bgFixed:"Læstur bakgrunnur",bgImage:"Slóð bakgrunnsmyndar",charset:"Letursett",charsetASCII:"ASCII",charsetCE:"Mið-evrópskt",charsetCR:"Kýrilskt",charsetCT:"Kínverskt, hefðbundið (Big5)",charsetGR:"Grískt",charsetJP:"Japanskt",charsetKR:"Kóreskt",charsetOther:"Annað letursett",charsetTR:"Tyrkneskt",charsetUN:"Unicode (UTF-8)",charsetWE:"Vestur-evrópst",chooseColor:"Choose",design:"Design",docTitle:"Titill síðu",docType:"Flokkur skjalategunda", +docTypeOther:"Annar flokkur skjalategunda",label:"Eigindi skjals",margin:"Hliðarspássía",marginBottom:"Neðst",marginLeft:"Vinstri",marginRight:"Hægri",marginTop:"Efst",meta:"Lýsigögn",metaAuthor:"Höfundur",metaCopyright:"Höfundarréttur",metaDescription:"Lýsing skjals",metaKeywords:"Lykilorð efnisorðaskrár (aðgreind með kommum)",other:"",previewHtml:'

This is some sample text. You are using CKEditor.

',title:"Eigindi skjals",txtColor:"Litur texta", +xhtmlDec:"Fella inn XHTML lýsingu"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/it.js new file mode 100644 index 0000000..56edb3a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/it.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","it",{bgColor:"Colore di sfondo",bgFixed:"Sfondo fissato",bgImage:"Immagine di sfondo",charset:"Set di caretteri",charsetASCII:"ASCII",charsetCE:"Europa Centrale",charsetCR:"Cirillico",charsetCT:"Cinese Tradizionale (Big5)",charsetGR:"Greco",charsetJP:"Giapponese",charsetKR:"Coreano",charsetOther:"Altro set di caretteri",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europa Occidentale",chooseColor:"Scegli",design:"Disegna",docTitle:"Titolo pagina",docType:"Intestazione DocType", +docTypeOther:"Altra intestazione DocType",label:"Proprietà del Documento",margin:"Margini",marginBottom:"In Basso",marginLeft:"A Sinistra",marginRight:"A Destra",marginTop:"In Alto",meta:"Meta Data",metaAuthor:"Autore",metaCopyright:"Copyright",metaDescription:"Descrizione documento",metaKeywords:"Chiavi di indicizzazione documento (separate da virgola)",other:"",previewHtml:'

Questo è un testo di esempio. State usando CKEditor.

',title:"Proprietà del Documento", +txtColor:"Colore testo",xhtmlDec:"Includi dichiarazione XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ja.js new file mode 100644 index 0000000..34f5791 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ja.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","ja",{bgColor:"背景色",bgFixed:"スクロールしない背景",bgImage:"背景画像 URL",charset:"文字コード",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"日本語",charsetKR:"Korean",charsetOther:"他の文字セット符号化",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"色の選択",design:"デザイン",docTitle:"ページタイトル",docType:"文書タイプヘッダー",docTypeOther:"その他文書タイプヘッダー",label:"文書 プロパティ",margin:"ページ・マージン", +marginBottom:"下部",marginLeft:"左",marginRight:"右",marginTop:"上部",meta:"メタデータ",metaAuthor:"文書の作者",metaCopyright:"文書の著作権",metaDescription:"文書の概要",metaKeywords:"文書のキーワード(カンマ区切り)",other:"<その他の>",previewHtml:'

これはテキストサンプルです。 あなたは、CKEditorを使っています。

',title:"文書 プロパティ",txtColor:"テキスト色",xhtmlDec:"XHTML宣言をインクルード"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ka.js new file mode 100644 index 0000000..50f71de --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ka.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ka",{bgColor:"ფონის ფერი",bgFixed:"უმოძრაო (ფიქსირებული) ფონი",bgImage:"ფონური სურათის URL",charset:"კოდირება",charsetASCII:"ამერიკული (ASCII)",charsetCE:"ცენტრალურ ევროპული",charsetCR:"კირილური",charsetCT:"ტრადიციული ჩინური (Big5)",charsetGR:"ბერძნული",charsetJP:"იაპონური",charsetKR:"კორეული",charsetOther:"სხვა კოდირებები",charsetTR:"თურქული",charsetUN:"უნიკოდი (UTF-8)",charsetWE:"დასავლეთ ევროპული",chooseColor:"არჩევა",design:"დიზაინი",docTitle:"გვერდის სათაური", +docType:"დოკუმენტის ტიპი",docTypeOther:"სხვა ტიპის დოკუმენტი",label:"დოკუმენტის პარამეტრები",margin:"გვერდის კიდეები",marginBottom:"ქვედა",marginLeft:"მარცხენა",marginRight:"მარჯვენა",marginTop:"ზედა",meta:"მეტაTag-ები",metaAuthor:"ავტორი",metaCopyright:"Copyright",metaDescription:"დოკუმენტის აღწერა",metaKeywords:"დოკუმენტის საკვანძო სიტყვები (მძიმით გამოყოფილი)",other:"სხვა...",previewHtml:'

ეს არის საცდელი ტექსტი. თქვენ CKEditor-ით სარგებლობთ.

', +title:"დოკუმენტის პარამეტრები",txtColor:"ტექსტის ფერი",xhtmlDec:"XHTML დეკლარაციების ჩართვა"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/km.js new file mode 100644 index 0000000..3427290 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/km.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","km",{bgColor:"ពណ៌​ផ្ទៃ​ក្រោយ",bgFixed:"ផ្ទៃ​ក្រោយ​គ្មាន​ការ​រំកិល (នឹង​ថ្កល់)",bgImage:"URL រូបភាព​ផ្ទៃ​ក្រោយ",charset:"ការ​អ៊ិនកូដ​តួ​អក្សរ",charsetASCII:"ASCII",charsetCE:"អឺរ៉ុប​កណ្ដាល",charsetCR:"Cyrillic",charsetCT:"ចិន​បុរាណ (Big5)",charsetGR:"ក្រិក",charsetJP:"ជប៉ុន",charsetKR:"កូរ៉េ",charsetOther:"កំណត់លេខកូតភាសាផ្សេងទៀត",charsetTR:"ទួរគី",charsetUN:"យូនីកូដ (UTF-8)",charsetWE:"អឺរ៉ុប​ខាង​លិច",chooseColor:"រើស",design:"រចនា",docTitle:"ចំណងជើងទំព័រ",docType:"ប្រភេទក្បាលទំព័រ​ឯកសារ", +docTypeOther:"ប្រភេទក្បាលទំព័រឯកសារ​ផ្សេងទៀត",label:"លក្ខណៈ​សម្បត្តិ​ឯកសារ",margin:"រឹម​ទំព័រ",marginBottom:"បាត​ក្រោម",marginLeft:"ឆ្វេង",marginRight:"ស្ដាំ",marginTop:"លើ",meta:"ស្លាក​មេតា",metaAuthor:"អ្នកនិពន្ធ",metaCopyright:"រក្សាសិទ្ធិ",metaDescription:"សេចក្តីអត្ថាធិប្បាយអំពីឯកសារ",metaKeywords:"ពាក្យនៅក្នុងឯកសារ (ផ្តាច់ពីគ្នាដោយក្បៀស)",other:"ដទៃ​ទៀត...",previewHtml:'

នេះ​គឺ​ជាអក្សរ​គំរូ​ខ្លះៗ។ អ្នក​កំពុង​ប្រើ CKEditor

',title:"ការកំណត់ ឯកសារ", +txtColor:"ពណ៌អក្សរ",xhtmlDec:"បញ្ជូល XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ko.js new file mode 100644 index 0000000..c9a2e43 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ko.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","ko",{bgColor:"배경 색상",bgFixed:"스크롤 되지 않는(고정된) 배경",bgImage:"배경 이미지 주소(URL)",charset:"문자열 인코딩",charsetASCII:"ASCII",charsetCE:"중앙 유럽",charsetCR:"키릴 문자",charsetCT:"중국어 (Big5)",charsetGR:"그리스어",charsetJP:"일본어",charsetKR:"한국어",charsetOther:"다른 문자열 인코딩",charsetTR:"터키어",charsetUN:"유니코드 (UTF-8)",charsetWE:"서유럽",chooseColor:"선택",design:"디자인",docTitle:"페이지 이름",docType:"문서 제목",docTypeOther:"다른 문서 제목",label:"문서 속성",margin:"페이지 여백",marginBottom:"아래",marginLeft:"왼쪽",marginRight:"오른쪽", +marginTop:"위",meta:"메타 데이터",metaAuthor:"작성자",metaCopyright:"저작권",metaDescription:"문서 설명",metaKeywords:"문서 핵심어 (쉼표로 구분)",other:"기타...",previewHtml:'

이것은 예문입니다. 여러분은 지금 CKEditor를 사용하고 있습니다.

',title:"문서 속성",txtColor:"글자 색상",xhtmlDec:"XHTML 문서 정의 포함"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ku.js new file mode 100644 index 0000000..f2dd284 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ku.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ku",{bgColor:"ڕەنگی پاشبنەما",bgFixed:"بێ هاتووچوپێکردنی (چەسپاو) پاشبنەمای وێنه",bgImage:"ناونیشانی بەستەری وێنەی پاشبنەما",charset:"دەستەی نووسەی بەکۆدکەر",charsetASCII:"ASCII",charsetCE:"ناوەڕاستی ئەوروپا",charsetCR:"سیریلیك",charsetCT:"چینی(Big5)",charsetGR:"یۆنانی",charsetJP:"ژاپۆنی",charsetKR:"کۆریا",charsetOther:"دەستەی نووسەی بەکۆدکەری تر",charsetTR:"تورکی",charsetUN:"Unicode (UTF-8)",charsetWE:"ڕۆژئاوای ئەوروپا",chooseColor:"هەڵبژێرە",design:"شێوەکار", +docTitle:"سەردێڕی پەڕه",docType:"سەرپەڕەی جۆری پەڕه",docTypeOther:"سەرپەڕەی جۆری پەڕەی تر",label:"خاسییەتی پەڕه",margin:"تەنیشت پەڕه",marginBottom:"ژێرەوه",marginLeft:"چەپ",marginRight:"ڕاست",marginTop:"سەرەوه",meta:"زانیاری مێتا",metaAuthor:"نووسەر",metaCopyright:"مافی بڵاوکردنەوەی",metaDescription:"پێناسەی لاپەڕه",metaKeywords:"بەڵگەنامەی وشەی کاریگەر(به کۆما لێکیان جیابکەوه)",other:"هیتر...",previewHtml:'

ئەمە وەك نموونەی دەقه. تۆ بەکاردەهێنیت CKEditor.

', +title:"خاسییەتی پەڕه",txtColor:"ڕەنگی دەق",xhtmlDec:"بەیاننامەکانی XHTML لەگەڵدابێت"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/lt.js new file mode 100644 index 0000000..b2e1ba9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/lt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","lt",{bgColor:"Fono spalva",bgFixed:"Neslenkantis fonas",bgImage:"Fono paveikslėlio nuoroda (URL)",charset:"Simbolių kodavimo lentelė",charsetASCII:"ASCII",charsetCE:"Centrinės Europos",charsetCR:"Kirilica",charsetCT:"Tradicinės kinų (Big5)",charsetGR:"Graikų",charsetJP:"Japonų",charsetKR:"Korėjiečių",charsetOther:"Kita simbolių kodavimo lentelė",charsetTR:"Turkų",charsetUN:"Unikodas (UTF-8)",charsetWE:"Vakarų Europos",chooseColor:"Pasirinkite",design:"Išdėstymas", +docTitle:"Puslapio antraštė",docType:"Dokumento tipo antraštė",docTypeOther:"Kita dokumento tipo antraštė",label:"Dokumento savybės",margin:"Puslapio kraštinės",marginBottom:"Apačioje",marginLeft:"Kairėje",marginRight:"Dešinėje",marginTop:"Viršuje",meta:"Meta duomenys",metaAuthor:"Autorius",metaCopyright:"Autorinės teisės",metaDescription:"Dokumento apibūdinimas",metaKeywords:"Dokumento indeksavimo raktiniai žodžiai (atskirti kableliais)",other:"",previewHtml:'

Tai yra pavyzdinis tekstas. Jūs naudojate CKEditor.

', +title:"Dokumento savybės",txtColor:"Teksto spalva",xhtmlDec:"Įtraukti XHTML deklaracijas"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/lv.js new file mode 100644 index 0000000..6101494 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/lv.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","lv",{bgColor:"Fona krāsa",bgFixed:"Fona attēls ir fiksēts",bgImage:"Fona attēla hipersaite",charset:"Simbolu kodējums",charsetASCII:"ASCII",charsetCE:"Centrāleiropas",charsetCR:"Kirilica",charsetCT:"Ķīniešu tradicionālā (Big5)",charsetGR:"Grieķu",charsetJP:"Japāņu",charsetKR:"Korejiešu",charsetOther:"Cits simbolu kodējums",charsetTR:"Turku",charsetUN:"Unikods (UTF-8)",charsetWE:"Rietumeiropas",chooseColor:"Izvēlēties",design:"Dizains",docTitle:"Dokumenta virsraksts ", +docType:"Dokumenta tips",docTypeOther:"Cits dokumenta tips",label:"Dokumenta īpašības",margin:"Lapas robežas",marginBottom:"Apakšā",marginLeft:"Pa kreisi",marginRight:"Pa labi",marginTop:"Augšā",meta:"META dati",metaAuthor:"Autors",metaCopyright:"Autortiesības",metaDescription:"Dokumenta apraksts",metaKeywords:"Dokumentu aprakstoši atslēgvārdi (atdalīti ar komatu)",other:"<cits>",previewHtml:'<p>Šis ir <strong>parauga teksts</strong>. Jūs izmantojiet <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Dokumenta īpašības",txtColor:"Teksta krāsa",xhtmlDec:"Ietvert XHTML deklarācijas"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/mk.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/mk.js new file mode 100644 index 0000000..7f48e61 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/mk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","mk",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/mn.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/mn.js new file mode 100644 index 0000000..8907ba3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/mn.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","mn",{bgColor:"Фоно өнгө",bgFixed:"Гүйдэггүй фоно",bgImage:"Фоно зурагны URL",charset:"Encoding тэмдэгт",charsetASCII:"ASCII",charsetCE:"Төв европ",charsetCR:"Крил",charsetCT:"Хятадын уламжлалт (Big5)",charsetGR:"Гред",charsetJP:"Япон",charsetKR:"Солонгос",charsetOther:"Encoding-д өөр тэмдэгт оноох",charsetTR:"Tурк",charsetUN:"Юникод (UTF-8)",charsetWE:"Баруун европ",chooseColor:"Сонгох",design:"Design",docTitle:"Хуудасны гарчиг",docType:"Баримт бичгийн төрөл Heading", +docTypeOther:"Бусад баримт бичгийн төрөл Heading",label:"Баримт бичиг шинж чанар",margin:"Хуудасны захын зай",marginBottom:"Доод тал",marginLeft:"Зүүн тал",marginRight:"Баруун тал",marginTop:"Дээд тал",meta:"Meta өгөгдөл",metaAuthor:"Зохиогч",metaCopyright:"Зохиогчийн эрх",metaDescription:"Баримт бичгийн тайлбар",metaKeywords:"Баримт бичгийн индекс түлхүүр үг (таслалаар тусгаарлагдана)",other:"<other>",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Баримт бичиг шинж чанар",txtColor:"Фонтны өнгө",xhtmlDec:"XHTML-ийн мэдээллийг агуулах"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ms.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ms.js new file mode 100644 index 0000000..fe51ef5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ms.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ms",{bgColor:"Warna Latarbelakang",bgFixed:"Imej Latarbelakang tanpa Skrol",bgImage:"URL Gambar Latarbelakang",charset:"Enkod Set Huruf",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Enkod Set Huruf yang Lain",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design",docTitle:"Tajuk Muka Surat", +docType:"Jenis Kepala Dokumen",docTypeOther:"Jenis Kepala Dokumen yang Lain",label:"Ciri-ciri dokumen",margin:"Margin Muka Surat",marginBottom:"Bawah",marginLeft:"Kiri",marginRight:"Kanan",marginTop:"Atas",meta:"Data Meta",metaAuthor:"Penulis",metaCopyright:"Hakcipta",metaDescription:"Keterangan Dokumen",metaKeywords:"Kata Kunci Indeks Dokumen (dipisahkan oleh koma)",other:"<lain>",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Ciri-ciri dokumen",txtColor:"Warna Text",xhtmlDec:"Masukkan pemula kod XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/nb.js new file mode 100644 index 0000000..b505923 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/nb.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","nb",{bgColor:"Bakgrunnsfarge",bgFixed:"Lås bakgrunnsbilde",bgImage:"URL for bakgrunnsbilde",charset:"Tegnsett",charsetASCII:"ASCII",charsetCE:"Sentraleuropeisk",charsetCR:"Kyrillisk",charsetCT:"Tradisonell kinesisk (Big5)",charsetGR:"Gresk",charsetJP:"Japansk",charsetKR:"Koreansk",charsetOther:"Annet tegnsett",charsetTR:"Tyrkisk",charsetUN:"Unicode (UTF-8)",charsetWE:"Vesteuropeisk",chooseColor:"Velg",design:"Design",docTitle:"Sidetittel",docType:"Dokumenttype header", +docTypeOther:"Annet dokumenttype header",label:"Dokumentegenskaper",margin:"Sidemargin",marginBottom:"Bunn",marginLeft:"Venstre",marginRight:"Høyre",marginTop:"Topp",meta:"Meta-data",metaAuthor:"Forfatter",metaCopyright:"Kopirett",metaDescription:"Dokumentbeskrivelse",metaKeywords:"Dokument nøkkelord (kommaseparert)",other:"<annen>",previewHtml:'<p>Dette er en <strong>eksempeltekst</strong>. Du bruker <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Dokumentegenskaper",txtColor:"Tekstfarge", +xhtmlDec:"Inkluder XHTML-deklarasjon"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/nl.js new file mode 100644 index 0000000..7425a0a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/nl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","nl",{bgColor:"Achtergrondkleur",bgFixed:"Niet-scrollend (gefixeerde) achtergrond",bgImage:"Achtergrondafbeelding URL",charset:"Tekencodering",charsetASCII:"ASCII",charsetCE:"Centraal Europees",charsetCR:"Cyrillisch",charsetCT:"Traditioneel Chinees (Big5)",charsetGR:"Grieks",charsetJP:"Japans",charsetKR:"Koreaans",charsetOther:"Andere tekencodering",charsetTR:"Turks",charsetUN:"Unicode (UTF-8)",charsetWE:"West Europees",chooseColor:"Kies",design:"Ontwerp",docTitle:"Paginatitel", +docType:"Documenttype-definitie",docTypeOther:"Andere documenttype-definitie",label:"Documenteigenschappen",margin:"Pagina marges",marginBottom:"Onder",marginLeft:"Links",marginRight:"Rechts",marginTop:"Boven",meta:"Meta tags",metaAuthor:"Auteur",metaCopyright:"Auteursrechten",metaDescription:"Documentbeschrijving",metaKeywords:"Trefwoorden voor indexering (komma-gescheiden)",other:"Anders...",previewHtml:'<p>Dit is <strong>voorbeeld tekst</strong>. Je gebruikt <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Documenteigenschappen",txtColor:"Tekstkleur",xhtmlDec:"XHTML declaratie invoegen"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/no.js new file mode 100644 index 0000000..11dddcf --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/no.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","no",{bgColor:"Bakgrunnsfarge",bgFixed:"Lås bakgrunnsbilde",bgImage:"URL for bakgrunnsbilde",charset:"Tegnsett",charsetASCII:"ASCII",charsetCE:"Sentraleuropeisk",charsetCR:"Kyrillisk",charsetCT:"Tradisonell kinesisk(Big5)",charsetGR:"Gresk",charsetJP:"Japansk",charsetKR:"Koreansk",charsetOther:"Annet tegnsett",charsetTR:"Tyrkisk",charsetUN:"Unicode (UTF-8)",charsetWE:"Vesteuropeisk",chooseColor:"Velg",design:"Design",docTitle:"Sidetittel",docType:"Dokumenttype header", +docTypeOther:"Annet dokumenttype header",label:"Dokumentegenskaper",margin:"Sidemargin",marginBottom:"Bunn",marginLeft:"Venstre",marginRight:"Høyre",marginTop:"Topp",meta:"Meta-data",metaAuthor:"Forfatter",metaCopyright:"Kopirett",metaDescription:"Dokumentbeskrivelse",metaKeywords:"Dokument nøkkelord (kommaseparert)",other:"<annen>",previewHtml:'<p>Dette er en <strong>eksempeltekst</strong>. Du bruker <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Dokumentegenskaper",txtColor:"Tekstfarge", +xhtmlDec:"Inkluder XHTML-deklarasjon"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/pl.js new file mode 100644 index 0000000..4fb4343 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/pl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","pl",{bgColor:"Kolor tła",bgFixed:"Tło nieruchome (nieprzewijające się)",bgImage:"Adres URL obrazka tła",charset:"Kodowanie znaków",charsetASCII:"ASCII",charsetCE:"Środkowoeuropejskie",charsetCR:"Cyrylica",charsetCT:"Chińskie tradycyjne (Big5)",charsetGR:"Greckie",charsetJP:"Japońskie",charsetKR:"Koreańskie",charsetOther:"Inne kodowanie znaków",charsetTR:"Tureckie",charsetUN:"Unicode (UTF-8)",charsetWE:"Zachodnioeuropejskie",chooseColor:"Wybierz",design:"Projekt strony", +docTitle:"Tytuł strony",docType:"Definicja typu dokumentu",docTypeOther:"Inna definicja typu dokumentu",label:"Właściwości dokumentu",margin:"Marginesy strony",marginBottom:"Dolny",marginLeft:"Lewy",marginRight:"Prawy",marginTop:"Górny",meta:"Znaczniki meta",metaAuthor:"Autor",metaCopyright:"Prawa autorskie",metaDescription:"Opis dokumentu",metaKeywords:"Słowa kluczowe dokumentu (oddzielone przecinkami)",other:"Inne",previewHtml:'<p>To jest <strong>przykładowy tekst</strong>. Korzystasz z programu <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Właściwości dokumentu",txtColor:"Kolor tekstu",xhtmlDec:"Uwzględnij deklaracje XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/pt-br.js new file mode 100644 index 0000000..c671fed --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/pt-br.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","pt-br",{bgColor:"Cor do Plano de Fundo",bgFixed:"Plano de Fundo Fixo",bgImage:"URL da Imagem de Plano de Fundo",charset:"Codificação de Caracteres",charsetASCII:"ASCII",charsetCE:"Europa Central",charsetCR:"Cirílico",charsetCT:"Chinês Tradicional (Big5)",charsetGR:"Grego",charsetJP:"Japonês",charsetKR:"Coreano",charsetOther:"Outra Codificação de Caracteres",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europa Ocidental",chooseColor:"Escolher",design:"Design", +docTitle:"Título da Página",docType:"Cabeçalho Tipo de Documento",docTypeOther:"Outro Tipo de Documento",label:"Propriedades Documento",margin:"Margens da Página",marginBottom:"Inferior",marginLeft:"Inferior",marginRight:"Direita",marginTop:"Superior",meta:"Meta Dados",metaAuthor:"Autor",metaCopyright:"Direitos Autorais",metaDescription:"Descrição do Documento",metaKeywords:"Palavras-chave de Indexação do Documento (separadas por vírgula)",other:"<outro>",previewHtml:'<p>Este é um <strong>texto de exemplo</strong>. Você está usando <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Propriedades Documento",txtColor:"Cor do Texto",xhtmlDec:"Incluir Declarações XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/pt.js new file mode 100644 index 0000000..2633940 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/pt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","pt",{bgColor:"Cor de Fundo",bgFixed:"Fundo Fixo",bgImage:"Caminho para a imagem de fundo",charset:"Codificação de caracteres",charsetASCII:"ASCII",charsetCE:"Europa Central",charsetCR:"Cirílico",charsetCT:"Chinês Traditional (Big5)",charsetGR:"Grego",charsetJP:"Japonês",charsetKR:"Coreano",charsetOther:"Outra Codificação de Caracteres",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europa Ocidental",chooseColor:"Choose",design:"Desenho",docTitle:"Título da Página", +docType:"Tipo de Cabeçalho do Documento",docTypeOther:"Outro Tipo de Cabeçalho do Documento",label:"Propriedades do Documento",margin:"Margem das Páginas",marginBottom:"Fundo",marginLeft:"Esquerda",marginRight:"Direita",marginTop:"Topo",meta:"Meta Data",metaAuthor:"Autor",metaCopyright:"Direitos de Autor",metaDescription:"Descrição do Documento",metaKeywords:"Palavras de Indexação do Documento (separadas por virgula)",other:"<outro>",previewHtml:'<p>Isto é algum <strong>texto amostra</strong>. Está a usar o <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Propriedades do documento",txtColor:"Cor do Texto",xhtmlDec:"Incluir Declarações XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ro.js new file mode 100644 index 0000000..feb0ec9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ro.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ro",{bgColor:"Culoarea fundalului (Background Color)",bgFixed:"Fundal neflotant, fix (Non-scrolling Background)",bgImage:"URL-ul imaginii din fundal (Background Image URL)",charset:"Encoding setului de caractere",charsetASCII:"ASCII",charsetCE:"Europa Centrală",charsetCR:"Chirilic",charsetCT:"Chinezesc tradiţional (Big5)",charsetGR:"Grecesc",charsetJP:"Japonez",charsetKR:"Corean",charsetOther:"Alt encoding al setului de caractere",charsetTR:"Turcesc",charsetUN:"Unicode (UTF-8)", +charsetWE:"Vest european",chooseColor:"Alege",design:"Proiect",docTitle:"Titlul paginii",docType:"Tip de document de antet",docTypeOther:"Alt Document Type Heading",label:"Proprietăţile documentului",margin:"Marginile paginii",marginBottom:"Jos",marginLeft:"Stânga",marginRight:"Dreapta",marginTop:"Sus",meta:"Tag-uri Meta",metaAuthor:"Autor",metaCopyright:"Drepturi de autor",metaDescription:"Descrierea documentului",metaKeywords:"Cuvinte cheie după care se va indexa documentul (separate prin virgulă)", +other:"Altele...",previewHtml:'<p>Acesta este un <strong>text exemplu</strong>. Folosiți <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Proprietăţile documentului",txtColor:"Culoarea textului",xhtmlDec:"Include declaraţii XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ru.js new file mode 100644 index 0000000..01d585f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ru.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ru",{bgColor:"Цвет фона",bgFixed:"Фон прикреплён (не проматывается)",bgImage:"Ссылка на фоновое изображение",charset:"Кодировка набора символов",charsetASCII:"ASCII",charsetCE:"Центрально-европейская",charsetCR:"Кириллица",charsetCT:"Китайская традиционная (Big5)",charsetGR:"Греческая",charsetJP:"Японская",charsetKR:"Корейская",charsetOther:"Другая кодировка набора символов",charsetTR:"Турецкая",charsetUN:"Юникод (UTF-8)",charsetWE:"Западно-европейская",chooseColor:"Выберите", +design:"Дизайн",docTitle:"Заголовок страницы",docType:"Заголовок типа документа",docTypeOther:"Другой заголовок типа документа",label:"Свойства документа",margin:"Отступы страницы",marginBottom:"Нижний",marginLeft:"Левый",marginRight:"Правый",marginTop:"Верхний",meta:"Метаданные",metaAuthor:"Автор",metaCopyright:"Авторские права",metaDescription:"Описание документа",metaKeywords:"Ключевые слова документа (через запятую)",other:"Другой ...",previewHtml:'<p>Это <strong>пример</strong> текста, написанного с помощью <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Свойства документа",txtColor:"Цвет текста",xhtmlDec:"Включить объявления XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/si.js new file mode 100644 index 0000000..19a7d6f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/si.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","si",{bgColor:"පසුබිම් වර්ණය",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"පසුබිම් ",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"මාධ්‍ය ",charsetCR:"සිරිලික් හෝඩිය",charsetCT:"චීන සම්ප්‍රදාය",charsetGR:"ග්‍රීක",charsetJP:"ජපාන",charsetKR:"Korean",charsetOther:"අනෙකුත් අක්ෂර කොටස්",charsetTR:"තුර්කි",charsetUN:"Unicode (UTF-8)",charsetWE:"බස්නාහිර ",chooseColor:"තෝරන්න",design:"Design",docTitle:"පිටු මාතෘකාව",docType:"ලිපිගොනු වර්ගයේ මාතෘකාව", +docTypeOther:"අනෙකුත් ලිපිගොනු වර්ගයේ මාතෘකා",label:"ලිපිගොනු ",margin:"පිටු සීමාවන්",marginBottom:"පහල",marginLeft:"වම",marginRight:"දකුණ",marginTop:"ඉ",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"ප්‍රකාශන ",metaDescription:"ලිපිගොනු ",metaKeywords:"ලිපිගොනු පෙලගේසමේ විශේෂ වචන (කොමා වලින් වෙන්කරන ලද)",other:"අනෙකුත්",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>',title:"පෝරමයේ ගුණ/",txtColor:"අක්ෂර වර්ණ",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sk.js new file mode 100644 index 0000000..b347ab0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sk",{bgColor:"Farba pozadia",bgFixed:"Fixné pozadie",bgImage:"URL obrázka na pozadí",charset:"Znaková sada",charsetASCII:"ASCII",charsetCE:"Stredoeurópska",charsetCR:"Cyrillika",charsetCT:"Čínština tradičná (Big5)",charsetGR:"Gréčtina",charsetJP:"Japončina",charsetKR:"Korejčina",charsetOther:"Iná znaková sada",charsetTR:"Turečtina",charsetUN:"Unicode (UTF-8)",charsetWE:"Západná európa",chooseColor:"Vybrať",design:"Design",docTitle:"Titulok stránky",docType:"Typ záhlavia dokumentu", +docTypeOther:"Iný typ záhlavia dokumentu",label:"Vlastnosti dokumentu",margin:"Okraje stránky (margins)",marginBottom:"Dolný",marginLeft:"Ľavý",marginRight:"Pravý",marginTop:"Horný",meta:"Meta značky",metaAuthor:"Autor",metaCopyright:"Autorské práva (copyright)",metaDescription:"Popis dokumentu",metaKeywords:"Indexované kľúčové slová dokumentu (oddelené čiarkou)",other:"Iný...",previewHtml:'<p>Toto je nejaký <strong>ukážkový text</strong>. Používate <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Vlastnosti dokumentu",txtColor:"Farba textu",xhtmlDec:"Vložiť deklarácie XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sl.js new file mode 100644 index 0000000..7017e1b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sl",{bgColor:"Barva ozadja",bgFixed:"Nepremično ozadje",bgImage:"URL slike za ozadje",charset:"Kodna tabela",charsetASCII:"ASCII",charsetCE:"Srednjeevropsko",charsetCR:"Cirilica",charsetCT:"Tradicionalno Kitajsko (Big5)",charsetGR:"Grško",charsetJP:"Japonsko",charsetKR:"Korejsko",charsetOther:"Druga kodna tabela",charsetTR:"Turško",charsetUN:"Unicode (UTF-8)",charsetWE:"Zahodnoevropsko",chooseColor:"Izberi",design:"Oblika",docTitle:"Naslov strani",docType:"Glava tipa dokumenta", +docTypeOther:"Druga glava tipa dokumenta",label:"Lastnosti dokumenta",margin:"Zamiki strani",marginBottom:"Spodaj",marginLeft:"Levo",marginRight:"Desno",marginTop:"Na vrhu",meta:"Meta podatki",metaAuthor:"Avtor",metaCopyright:"Avtorske pravice",metaDescription:"Opis strani",metaKeywords:"Ključne besede (ločene z vejicami)",other:"<drug>",previewHtml:'<p>Tole je<strong>primer besedila</strong>. Uporabljate <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Lastnosti dokumenta",txtColor:"Barva besedila", +xhtmlDec:"Vstavi XHTML deklaracije"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sq.js new file mode 100644 index 0000000..e08409b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sq.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sq",{bgColor:"Ngjyra e Prapavijës",bgFixed:"Prapavijë pa zvarritje (fiks)",bgImage:"URL e Fotografisë së Prapavijës",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Evropës Qendrore",charsetCR:"Sllave",charsetCT:"Kinezisht Tradicional (Big5)",charsetGR:"Greke",charsetJP:"Japoneze",charsetKR:"Koreane",charsetOther:"Other Character Set Encoding",charsetTR:"Turke",charsetUN:"Unicode (UTF-8)",charsetWE:"Evropiano Perëndimor",chooseColor:"Përzgjidh", +design:"Dizajni",docTitle:"Titulli i Faqes",docType:"Document Type Heading",docTypeOther:"Koka e Llojit Tjetër të Dokumentit",label:"Karakteristikat e Dokumentit",margin:"Kufijtë e Faqes",marginBottom:"Poshtë",marginLeft:"Majtas",marginRight:"Djathtas",marginTop:"Lart",meta:"Meta Tags",metaAuthor:"Autori",metaCopyright:"Të drejtat e kopjimit",metaDescription:"Përshkrimi i Dokumentit",metaKeywords:"Fjalët kyçe të indeksimit të dokumentit (të ndarë me presje)",other:"Tjera...",previewHtml:'<p>Ky është nje <strong>tekst shembull</strong>. Ju jeni duke shfrytëzuar <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Karakteristikat e Dokumentit",txtColor:"Ngjyra e Tekstit",xhtmlDec:"Përfshij XHTML Deklarimet"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sr-latn.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sr-latn.js new file mode 100644 index 0000000..77312ff --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sr-latn.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sr-latn",{bgColor:"Boja pozadine",bgFixed:"Fiksirana pozadina",bgImage:"URL pozadinske slike",charset:"Kodiranje skupa karaktera",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Ostala kodiranja skupa karaktera",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design",docTitle:"Naslov stranice", +docType:"Zaglavlje tipa dokumenta",docTypeOther:"Ostala zaglavlja tipa dokumenta",label:"Osobine dokumenta",margin:"Margine stranice",marginBottom:"Donja",marginLeft:"Leva",marginRight:"Desna",marginTop:"Gornja",meta:"Metapodaci",metaAuthor:"Autor",metaCopyright:"Autorska prava",metaDescription:"Opis dokumenta",metaKeywords:"Ključne reci za indeksiranje dokumenta (razdvojene zarezima)",other:"<остало>",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Osobine dokumenta",txtColor:"Boja teksta",xhtmlDec:"Ukljuci XHTML deklaracije"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sr.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sr.js new file mode 100644 index 0000000..f50c3e4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sr",{bgColor:"Боја позадине",bgFixed:"Фиксирана позадина",bgImage:"УРЛ позадинске слике",charset:"Кодирање скупа карактера",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Остала кодирања скупа карактера",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design",docTitle:"Наслов странице", +docType:"Заглавље типа документа",docTypeOther:"Остала заглавља типа документа",label:"Особине документа",margin:"Маргине странице",marginBottom:"Доња",marginLeft:"Лева",marginRight:"Десна",marginTop:"Горња",meta:"Метаподаци",metaAuthor:"Аутор",metaCopyright:"Ауторска права",metaDescription:"Опис документа",metaKeywords:"Кључне речи за индексирање документа (раздвојене зарезом)",other:"<other>",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Особине документа",txtColor:"Боја текста",xhtmlDec:"Улључи XHTML декларације"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sv.js new file mode 100644 index 0000000..363de9b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/sv.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","sv",{bgColor:"Bakgrundsfärg",bgFixed:"Fast bakgrund",bgImage:"Bakgrundsbildens URL",charset:"Teckenuppsättningar",charsetASCII:"ASCII",charsetCE:"Central Europa",charsetCR:"Kyrillisk",charsetCT:"Traditionell Kinesisk (Big5)",charsetGR:"Grekiska",charsetJP:"Japanska",charsetKR:"Koreanska",charsetOther:"Övriga teckenuppsättningar",charsetTR:"Turkiska",charsetUN:"Unicode (UTF-8)",charsetWE:"Väst Europa",chooseColor:"Välj",design:"Design",docTitle:"Sidtitel",docType:"Sidhuvud", +docTypeOther:"Övriga sidhuvuden",label:"Dokumentegenskaper",margin:"Sidmarginal",marginBottom:"Botten",marginLeft:"Vänster",marginRight:"Höger",marginTop:"Topp",meta:"Metadata",metaAuthor:"Författare",metaCopyright:"Upphovsrätt",metaDescription:"Sidans beskrivning",metaKeywords:"Sidans nyckelord (kommaseparerade)",other:"Annan...",previewHtml:'<p>Detta är en <strong>exempel text</strong>. Du använder <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Dokumentegenskaper",txtColor:"Textfärg",xhtmlDec:"Inkludera XHTML deklaration"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/th.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/th.js new file mode 100644 index 0000000..2befc7f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/th.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","th",{bgColor:"สีพื้นหลัง",bgFixed:"พื้นหลังแบบไม่มีแถบเลื่อน",bgImage:"ที่อยู่อ้างอิงออนไลน์ของรูปพื้นหลัง (Image URL)",charset:"ชุดตัวอักษร",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"ชุดตัวอักษรอื่นๆ",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"ออกแบบ",docTitle:"ชื่อไตเติ้ล", +docType:"ประเภทของเอกสาร",docTypeOther:"ประเภทเอกสารอื่นๆ",label:"คุณสมบัติของเอกสาร",margin:"ระยะขอบของหน้าเอกสาร",marginBottom:"ด้านล่าง",marginLeft:"ด้านซ้าย",marginRight:"ด้านขวา",marginTop:"ด้านบน",meta:"ข้อมูลสำหรับเสิร์ชเอนจิ้น",metaAuthor:"ผู้สร้างเอกสาร",metaCopyright:"สงวนลิขสิทธิ์",metaDescription:"ประโยคอธิบายเกี่ยวกับเอกสาร",metaKeywords:"คำสำคัญอธิบายเอกสาร (คั่นคำด้วย คอมม่า)",other:"<อื่น ๆ>",previewHtml:'<p>นี่เป็น <strong>ข้อความตัวอย่าง</strong>. คุณกำลังใช้งาน <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"คุณสมบัติของเอกสาร",txtColor:"สีตัวอักษร",xhtmlDec:"รวมเอา XHTML Declarations ไว้ด้วย"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/tr.js new file mode 100644 index 0000000..00a35d4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/tr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","tr",{bgColor:"Arka Plan Rengi",bgFixed:"Sabit Arka Plan",bgImage:"Arka Plan Resim URLsi",charset:"Karakter Kümesi Kodlaması",charsetASCII:"ASCII",charsetCE:"Orta Avrupa",charsetCR:"Kiril",charsetCT:"Geleneksel Çince (Big5)",charsetGR:"Yunanca",charsetJP:"Japonca",charsetKR:"Korece",charsetOther:"Diğer Karakter Kümesi Kodlaması",charsetTR:"Türkçe",charsetUN:"Evrensel Kod (UTF-8)",charsetWE:"Batı Avrupa",chooseColor:"Seçiniz",design:"Dizayn",docTitle:"Sayfa Başlığı", +docType:"Belge Türü Başlığı",docTypeOther:"Diğer Belge Türü Başlığı",label:"Belge Özellikleri",margin:"Kenar Boşlukları",marginBottom:"Alt",marginLeft:"Sol",marginRight:"Sağ",marginTop:"Tepe",meta:"Tanım Bilgisi (Meta)",metaAuthor:"Yazar",metaCopyright:"Telif",metaDescription:"Belge Tanımı",metaKeywords:"Belge Dizinleme Anahtar Kelimeleri (virgülle ayrılmış)",other:"<diğer>",previewHtml:'<p>Bu bir <strong>örnek metindir</strong>. <a href="javascript:void(0)">CKEditor</a> kullanıyorsunuz.</p>',title:"Belge Özellikleri", +txtColor:"Yazı Rengi",xhtmlDec:"XHTML Bildirimlerini Dahil Et"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/tt.js new file mode 100644 index 0000000..719cd4d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/tt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","tt",{bgColor:"Фон төсе",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Урта Ауропа",charsetCR:"Кириллик",charsetCT:"Гадәти кытай (Big5)",charsetGR:"Грек",charsetJP:"Япон",charsetKR:"Корей",charsetOther:"Other Character Set Encoding",charsetTR:"Төрек",charsetUN:"Юникод (UTF-8)",charsetWE:"Көнбатыш Ауропа",chooseColor:"Сайлау",design:"Дизайн",docTitle:"Бит исеме",docType:"Document Type Heading", +docTypeOther:"Other Document Type Heading",label:"Документ үзлекләре",margin:"Page Margins",marginBottom:"Аска",marginLeft:"Сул",marginRight:"Уң як",marginTop:"Өскә",meta:"Метатег",metaAuthor:"Автор",metaCopyright:"Хокук иясе",metaDescription:"Документ тасвирламасы",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Башка...",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Документ үзлекләре",txtColor:"Текст төсе", +xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ug.js new file mode 100644 index 0000000..424d13a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/ug.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ug",{bgColor:"تەگلىك رەڭگى",bgFixed:"تەگلىك سۈرەتنى دومىلاتما",bgImage:"تەگلىك سۈرەت",charset:"ھەرپ كودلىنىشى",charsetASCII:"ASCII",charsetCE:"ئوتتۇرا ياۋرۇپا",charsetCR:"سىلاۋيانچە",charsetCT:"مۇرەككەپ خەنزۇچە (Big5)",charsetGR:"گىرېكچە",charsetJP:"ياپونچە",charsetKR:"كۆرىيەچە",charsetOther:"باشقا ھەرپ كودلىنىشى",charsetTR:"تۈركچە",charsetUN:"يۇنىكود (UTF-8)",charsetWE:"غەربىي ياۋرۇپا",chooseColor:"تاللاڭ",design:"لايىھە",docTitle:"بەت ماۋزۇسى",docType:"پۈتۈك تىپى", +docTypeOther:"باشقا پۈتۈك تىپى",label:"بەت خاسلىقى",margin:"بەت گىرۋەك",marginBottom:"ئاستى",marginLeft:"سول",marginRight:"ئوڭ",marginTop:"ئۈستى",meta:"مېتا سانلىق مەلۇمات",metaAuthor:"يازغۇچى",metaCopyright:"نەشر ھوقۇقى",metaDescription:"بەت يۈزى چۈشەندۈرۈشى",metaKeywords:"بەت يۈزى ئىندېكىس ھالقىلىق سۆزى (ئىنگلىزچە پەش [,] بىلەن ئايرىلىدۇ)",other:"باشقا",previewHtml:'<p>بۇ بىر قىسىم <strong>كۆرسەتمىگە ئىشلىتىدىغان تېكىست </strong>سىز نۆۋەتتە <a href="javascript:void(0)">CKEditor</a>.نى ئىشلىتىۋاتىسىز.</p>', +title:"بەت خاسلىقى",txtColor:"تېكىست رەڭگى",xhtmlDec:"XHTML ئېنىقلىمىسىنى ئۆز ئىچىگە ئالىدۇ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/uk.js new file mode 100644 index 0000000..c102796 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/uk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","uk",{bgColor:"Колір тла",bgFixed:"Тло без прокрутки",bgImage:"URL зображення тла",charset:"Кодування набору символів",charsetASCII:"ASCII",charsetCE:"Центрально-європейська",charsetCR:"Кирилиця",charsetCT:"Китайська традиційна (Big5)",charsetGR:"Грецька",charsetJP:"Японська",charsetKR:"Корейська",charsetOther:"Інше кодування набору символів",charsetTR:"Турецька",charsetUN:"Юнікод (UTF-8)",charsetWE:"Західно-европейская",chooseColor:"Обрати",design:"Дизайн",docTitle:"Заголовок сторінки", +docType:"Заголовок типу документу",docTypeOther:"Інший заголовок типу документу",label:"Властивості документа",margin:"Відступи сторінки",marginBottom:"Нижній",marginLeft:"Лівий",marginRight:"Правий",marginTop:"Верхній",meta:"Мета дані",metaAuthor:"Автор",metaCopyright:"Авторські права",metaDescription:"Опис документа",metaKeywords:"Ключові слова документа (розділені комами)",other:"<інший>",previewHtml:'<p>Це приклад<strong>тексту</strong>. Ви використовуєте<a href="javascript:void(0)"> CKEditor </a>.</p>', +title:"Властивості документа",txtColor:"Колір тексту",xhtmlDec:"Ввімкнути XHTML оголошення"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/vi.js new file mode 100644 index 0000000..b458376 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/vi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","vi",{bgColor:"Màu nền",bgFixed:"Không cuộn nền",bgImage:"URL của Hình ảnh nền",charset:"Bảng mã ký tự",charsetASCII:"ASCII",charsetCE:"Trung Âu",charsetCR:"Tiếng Kirin",charsetCT:"Tiếng Trung Quốc (Big5)",charsetGR:"Tiếng Hy Lạp",charsetJP:"Tiếng Nhật",charsetKR:"Tiếng Hàn",charsetOther:"Bảng mã ký tự khác",charsetTR:"Tiếng Thổ Nhĩ Kỳ",charsetUN:"Unicode (UTF-8)",charsetWE:"Tây Âu",chooseColor:"Chọn màu",design:"Thiết kế",docTitle:"Tiêu đề Trang",docType:"Kiểu Đề mục Tài liệu", +docTypeOther:"Kiểu Đề mục Tài liệu khác",label:"Thuộc tính Tài liệu",margin:"Đường biên của Trang",marginBottom:"Dưới",marginLeft:"Trái",marginRight:"Phải",marginTop:"Trên",meta:"Siêu dữ liệu",metaAuthor:"Tác giả",metaCopyright:"Bản quyền",metaDescription:"Mô tả tài liệu",metaKeywords:"Các từ khóa chỉ mục tài liệu (phân cách bởi dấu phẩy)",other:"<khác>",previewHtml:'<p>Đây là một số <strong>văn bản mẫu</strong>. Bạn đang sử dụng <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Thuộc tính Tài liệu", +txtColor:"Màu chữ",xhtmlDec:"Bao gồm cả định nghĩa XHTML"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/zh-cn.js new file mode 100644 index 0000000..d8c87e7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/zh-cn.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","zh-cn",{bgColor:"背景颜色",bgFixed:"不滚动背景图像",bgImage:"背景图像",charset:"字符编码",charsetASCII:"ASCII",charsetCE:"中欧",charsetCR:"西里尔文",charsetCT:"繁体中文 (Big5)",charsetGR:"希腊文",charsetJP:"日文",charsetKR:"韩文",charsetOther:"其它字符编码",charsetTR:"土耳其文",charsetUN:"Unicode (UTF-8)",charsetWE:"西欧",chooseColor:"选择",design:"设计",docTitle:"页面标题",docType:"文档类型",docTypeOther:"其它文档类型",label:"页面属性",margin:"页面边距",marginBottom:"下",marginLeft:"左",marginRight:"右",marginTop:"上",meta:"Meta 数据",metaAuthor:"作者", +metaCopyright:"版权",metaDescription:"页面说明",metaKeywords:"页面索引关键字 (用半角逗号[,]分隔)",other:"<其他>",previewHtml:'<p>这是一些<strong>演示用文字</strong>。您当前正在使用<a href="javascript:void(0)">CKEditor</a>。</p>',title:"页面属性",txtColor:"文本颜色",xhtmlDec:"包含 XHTML 声明"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/zh.js new file mode 100644 index 0000000..193a57d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/lang/zh.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","zh",{bgColor:"背景顏色",bgFixed:"非捲動 (固定) 背景",bgImage:"背景圖像 URL",charset:"字元集編碼",charsetASCII:"ASCII",charsetCE:"中歐語系",charsetCR:"斯拉夫文",charsetCT:"正體中文 (Big5)",charsetGR:"希臘文",charsetJP:"日文",charsetKR:"韓文",charsetOther:"其他字元集編碼",charsetTR:"土耳其文",charsetUN:"Unicode (UTF-8)",charsetWE:"西歐語系",chooseColor:"選擇",design:"設計模式",docTitle:"頁面標題",docType:"文件類型標題",docTypeOther:"其他文件類型標題",label:"文件屬性",margin:"頁面邊界",marginBottom:"底端",marginLeft:"左",marginRight:"右",marginTop:"頂端", +meta:"Meta 標籤",metaAuthor:"作者",metaCopyright:"版權資訊",metaDescription:"文件描述",metaKeywords:"文件索引關鍵字 (以逗號分隔)",other:"其他…",previewHtml:'<p>此為簡短的<strong>範例文字</strong>。您正在使用 <a href="javascript:void(0)">CKEditor</a>。</p>',title:"文件屬性",txtColor:"文字顏色",xhtmlDec:"包含 XHTML 宣告"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/docprops/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/docprops/plugin.js new file mode 100644 index 0000000..2ca000c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/docprops/plugin.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("docprops",{requires:"wysiwygarea,dialog,colordialog",lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",icons:"docprops,docprops-rtl",hidpi:!0,init:function(a){var b=new CKEDITOR.dialogCommand("docProps");b.modes={wysiwyg:a.config.fullPage};b.allowedContent={body:{styles:"*",attributes:"dir"},html:{attributes:"lang,xml:lang"}}; +b.requiredContent="body";a.addCommand("docProps",b);CKEDITOR.dialog.add("docProps",this.path+"dialogs/docprops.js");a.ui.addButton&&a.ui.addButton("DocProps",{label:a.lang.docprops.label,command:"docProps",toolbar:"document,30"})}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embed/icons/embed.png b/zup-painel/assets/scripts/ckeditor/plugins/embed/icons/embed.png new file mode 100644 index 0000000..9a9a735 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/embed/icons/embed.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embed/icons/hidpi/embed.png b/zup-painel/assets/scripts/ckeditor/plugins/embed/icons/hidpi/embed.png new file mode 100644 index 0000000..97dc754 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/embed/icons/hidpi/embed.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embed/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/embed/plugin.js new file mode 100644 index 0000000..8b5c773 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embed/plugin.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("embed",{icons:"embed",hidpi:!0,requires:"embedbase",init:function(b){var c=CKEDITOR.plugins.embedBase.createWidgetBaseDefinition(b);CKEDITOR.tools.extend(c,{dialog:"embedBase",button:b.lang.embedbase.button,allowedContent:"div[!data-oembed-url]",requiredContent:"div[data-oembed-url]",providerUrl:new CKEDITOR.template(b.config.embed_provider||"//ckeditor.iframe.ly/api/oembed?url={url}&callback={callback}"),styleToAllowedContentRules:function(a){return{div:{propertiesOnly:!0, +classes:a.getClassesArray(),attributes:"!data-oembed-url"}}},upcast:function(a,b){if("div"==a.name&&a.attributes["data-oembed-url"])return b.url=a.attributes["data-oembed-url"],!0},downcast:function(a){a.attributes["data-oembed-url"]=this.data.url}},!0);b.widgets.add("embed",c);b.filter.addElementCallback(function(a){if("data-oembed-url"in a.attributes)return CKEDITOR.FILTER_SKIP_TREE})}})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/dialogs/embedbase.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/dialogs/embedbase.js new file mode 100644 index 0000000..674e87d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/dialogs/embedbase.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("embedBase",function(b){var c=b.lang.embedbase;return{title:c.title,minWidth:350,minHeight:50,onLoad:function(){function e(){a.setState(CKEDITOR.DIALOG_STATE_IDLE);d=null}var a=this,d=null;this.on("ok",function(f){f.data.hide=!1;f.stop();a.setState(CKEDITOR.DIALOG_STATE_BUSY);var c=a.getValueOf("info","url");d=a.widget.loadContent(c,{noNotifications:!0,callback:function(){a.widget.isReady()||b.widgets.finalizeCreation(a.widget.wrapper.getParent(!0));b.fire("saveSnapshot");a.hide(); +e()},errorCallback:function(b){a.getContentElement("info","url").select();alert(a.widget.getErrorMessage(b,c,"Given"));e()}})},null,null,15);this.on("cancel",function(a){a.data.hide&&d&&(d.cancel(),e())})},contents:[{id:"info",elements:[{type:"text",id:"url",label:b.lang.common.url,setup:function(b){this.setValue(b.data.url)},validate:function(){return!this.getDialog().widget.isUrlValid(this.getValue())?c.unsupportedUrlGiven:!0}}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/cs.js new file mode 100644 index 0000000..b3e9fdc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","cs",{pathName:"objekt média",title:"Vložení médií",button:"Vložit médium",unsupportedUrlGiven:"Zadaná URL není podporována.",unsupportedUrl:"URL {url} není podporována ",fetchingFailedGiven:"Pro zadanou adresu URL nelze získat obsah.",fetchingFailed:"Nelze získat obsah na {url}.",fetchingOne:"Získávání odpovědí oEmbed...",fetchingMany:"Získávání odpovědí oEmbed. {current} z {max} hotovo..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/de.js new file mode 100644 index 0000000..8cea863 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","de",{pathName:"Medienobjekt",title:"Media Embed",button:"Insert Media Embed",unsupportedUrlGiven:"Die angegebene URL wird nicht unterstützt.",unsupportedUrl:"The URL {url} is not supported by Media Embed.",fetchingFailedGiven:"Abrufen des Inhalts für die angegebene URL ist fehlgeschlagen.",fetchingFailed:"Abrufen des Inhalts für {url} ist fehlgeschlagen.",fetchingOne:"Fetching oEmbed response...",fetchingMany:"Fetching oEmbed responses, {current} of {max} done..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/en.js new file mode 100644 index 0000000..30668c8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","en",{pathName:"media object",title:"Media Embed",button:"Insert Media Embed",unsupportedUrlGiven:"The specified URL is not supported.",unsupportedUrl:"The URL {url} is not supported by Media Embed.",fetchingFailedGiven:"Failed to fetch content for the given URL.",fetchingFailed:"Failed to fetch content for {url}.",fetchingOne:"Fetching oEmbed response...",fetchingMany:"Fetching oEmbed responses, {current} of {max} done..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/fr.js new file mode 100644 index 0000000..3a04d99 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","fr",{pathName:"objet média",title:"Média Intégré",button:"Insérer le média intégré",unsupportedUrlGiven:"L'URL spécifiée n'est pas supportée.",unsupportedUrl:"L'URL {url} n'est pas supportée par Média Intégré",fetchingFailedGiven:"Échec de la récupération du contenu de l'URL donnée.",fetchingFailed:"Échec de la récupération du contenu pour {url}.",fetchingOne:"Récupération de la réponse oEmbed...",fetchingMany:"Récupération des réponse oEmbed, {current} sur {max} effectué..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/gl.js new file mode 100644 index 0000000..b8429ba --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","gl",{pathName:"obxecto multimedia",title:"Multimedia integrado",button:"Inserir un multimedia integrado",unsupportedUrlGiven:"O URL especificado non está admitido.",unsupportedUrl:"O URL {url} non está admitido polo multimedia integrado.",fetchingFailedGiven:"Non foi posíbel obter o contido do URL indicado.",fetchingFailed:"Non foi posíbel obter o contido der {url}.",fetchingOne:"Obtendo a resposta oEmbed...",fetchingMany:"Obtendo as respostas oEmbed, feito {current} de {max}..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/it.js new file mode 100644 index 0000000..aa6ed31 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","it",{pathName:"oggetto multimediale",title:"Media incorporato",button:"Inserisci media incorporato",unsupportedUrlGiven:"L'URL specificato non è supportato.",unsupportedUrl:"L'URL {url} non è supportato da Media incorporato.",fetchingFailedGiven:"Non è stato possibile recuperareil contenuto per l'URL specificato.",fetchingFailed:"Non è stato possibile recuperare il contenuto per {url}.",fetchingOne:"Recupero della risposta oEmbed...",fetchingMany:"Recupero delle risposta oEmbed, {current} di {max} completati..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/ko.js new file mode 100644 index 0000000..f1f3f30 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","ko",{pathName:"미디어 오브젝트",title:"미디어 임베드",button:"미디어 임베드 삽입",unsupportedUrlGiven:"지원하지 않는 주소 형식입니다.",unsupportedUrl:"입력하신 주소 {url}은 지원되지 않는 형식입니다.",fetchingFailedGiven:"입력하신 주소에서 내용을 불러올 수 없습니다.",fetchingFailed:"입력하신 주소 {url}에서 내용을 불러올 수 없습니다.",fetchingOne:"oEmbed 응답을 가져오는 중...",fetchingMany:"총 {max} 개 중{current} 번째 oEmbed 응답을 가져오는 중..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/nb.js new file mode 100644 index 0000000..1ded173 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","nb",{pathName:"mediaobjekt",title:"Media-innbygging",button:"Sett inn mediaobjekt",unsupportedUrlGiven:"Den oppgitte URL-en er ikke støttet.",unsupportedUrl:"URL-en {url} er ikke støttet av Media-innbygging.",fetchingFailedGiven:"Kunne ikke hente innhold for den oppgitte URL-en.",fetchingFailed:"Kunne ikke hente innhold for {url}.",fetchingOne:"Henter oEmbed-svar...",fetchingMany:"Henter oEmbed-svar, {current} av {max} fullført..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/nl.js new file mode 100644 index 0000000..2f5d699 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","nl",{pathName:"media object",title:"Mediareferentie",button:"Mediareferentie invoegen",unsupportedUrlGiven:"De opgegeven URL wordt niet ondersteund.",unsupportedUrl:"De URL {url} wordt niet ondersteund door Mediareferentie.",fetchingFailedGiven:"Kon de inhoud van de opgegeven URL niet ophalen",fetchingFailed:"Kon de inhoud van {url} niet ophalen.",fetchingOne:"Ophalen van oEmbed antwoord…",fetchingMany:"Ophalen van oEmbed antwoorden, {current} van {max} klaar…"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/pl.js new file mode 100644 index 0000000..f50aec5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","pl",{pathName:"obiekt multimediów",title:"Osadzenie multimediów (oEmbed)",button:"Osadź obiekt multimediów (oEmbed)",unsupportedUrlGiven:"Podany adres URL nie jest obsługiwany.",unsupportedUrl:"Adres URL {url} nie jest obsługiwany przez funkcjonalność osadzania multimediów.",fetchingFailedGiven:"Nie udało się pobrać zawartości dla podanego adresu URL.",fetchingFailed:"Nie udało się pobrać zawartości dla {url}.",fetchingOne:"Pobieranie odpowiedzi oEmbed...",fetchingMany:"Pobieranie odpowiedzi oEmbed, gotowe {current} z {max}..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/ru.js new file mode 100644 index 0000000..2ef5326 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","ru",{pathName:"media object",title:"Media Embed",button:"Вставить медиаконтент",unsupportedUrlGiven:"The specified URL is not supported.",unsupportedUrl:"URL {url} не поддерживает возможность вставки медиаконтента",fetchingFailedGiven:"Не удалось извлечь контент для заданного URL",fetchingFailed:"Не удалось извлечь контент для {url}",fetchingOne:"Fetching oEmbed response...",fetchingMany:"Fetching oEmbed responses, {current} of {max} done..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/tr.js new file mode 100644 index 0000000..bd50191 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","tr",{pathName:"medya nesnesi",title:"Gömülmüş Medya",button:"Gömülü Medya Ekle",unsupportedUrlGiven:"Belirtmiş olduğunuz URL desteklenmiyor.",unsupportedUrl:"Belirttiğiniz URL {url} gömülü medya tarafından desteklenmiyor.",fetchingFailedGiven:"Vermiş olduğunuz URL'nin içeriği alınamadı.",fetchingFailed:"{url} içeriği alınamadı.",fetchingOne:"oEmbed cevabı alınıyor...",fetchingMany:"oEmbed cevabı alınıyor, {current} / {max} tamamlandı..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/zh-cn.js new file mode 100644 index 0000000..6da3978 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","zh-cn",{pathName:"媒体对象",title:"嵌入媒体",button:"插入媒体",unsupportedUrlGiven:"不支持指定的 URL。",unsupportedUrl:"嵌入媒体不支持此 URL {url}。",fetchingFailedGiven:"无法抓取此 URL 的内容。",fetchingFailed:"无法抓取 {url} 的内容。",fetchingOne:"正在抓取……",fetchingMany:"正在抓取,{max} 中的 {current} ……"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/zh.js new file mode 100644 index 0000000..d753ecc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","zh",{pathName:"媒體元件",title:"內嵌媒體",button:"插入內嵌媒體",unsupportedUrlGiven:"不支援指定的 URL。",unsupportedUrl:"內嵌媒體不支援 URL {url} 。",fetchingFailedGiven:"抓取指定 URL 的內容失敗。",fetchingFailed:"抓取 {url} 的內容失敗。",fetchingOne:"正在抓取 oEmbed 回應...",fetchingMany:"正在抓取 oEmbed 回應,{max} 中的 {current} 已完成..."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedbase/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/plugin.js new file mode 100644 index 0000000..9fb6f8c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedbase/plugin.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("embedbase",{lang:"en",requires:"widget,notificationaggregator",onLoad:function(){CKEDITOR._.jsonpCallbacks={}},init:function(){CKEDITOR.dialog.add("embedBase",this.path+"dialogs/embedbase.js")}});var j={_attachScript:function(d,c){var e=new CKEDITOR.dom.element("script");e.setAttribute("src",d);e.on("error",c);CKEDITOR.document.getBody().append(e);return e},sendRequest:function(d,c,e,a){function b(){g&&(g.remove(),delete CKEDITOR._.jsonpCallbacks[h],g=null)}var i= +{},c=c||{},h=CKEDITOR.tools.getNextNumber(),g;c.callback="CKEDITOR._.jsonpCallbacks["+h+"]";CKEDITOR._.jsonpCallbacks[h]=function(a){setTimeout(function(){b();e(a)})};g=this._attachScript(d.output(c),function(){b();a&&a()});i.cancel=b;return i}};CKEDITOR.plugins.embedBase={createWidgetBaseDefinition:function(d){var c,e=d.lang.embedbase;return{mask:!0,template:"<div></div>",pathName:e.pathName,_cache:{},urlRegExp:/^((https?:)?\/\/|www\.)/i,init:function(){this.on("sendRequest",function(a){this._sendRequest(a.data)}, +this,null,999);this.on("dialog",function(a){a.data.widget=this},this);this.on("handleResponse",function(a){if(!a.data.html){var b=this._responseToHtml(a.data.url,a.data.response);null!==b?a.data.html=b:(a.data.errorMessage="unsupportedUrl",a.cancel())}},this,null,999)},loadContent:function(a,b){function c(d){f.response=d;e._handleResponse(f)&&(e._cacheResponse(a,d),b.callback&&b.callback())}var b=b||{},e=this,d=this._getCachedResponse(a),f={url:a,callback:c,errorCallback:function(a){e._handleError(f, +a);b.errorCallback&&b.errorCallback(a)}};if(d)setTimeout(function(){c(d)});else return b.noNotifications||(f.task=this._createTask()),this.fire("sendRequest",f),f},isUrlValid:function(a){return this.urlRegExp.test(a)&&!1!==this.fire("validateUrl",a)},getErrorMessage:function(a,b,c){(c=d.lang.embedbase[a+(c||"")])||(c=a);return(new CKEDITOR.template(c)).output({url:b||""})},_sendRequest:function(a){var b=this,c=j.sendRequest(this.providerUrl,{url:encodeURIComponent(a.url)},a.callback,function(){a.errorCallback("fetchingFailed")}); +a.cancel=function(){c.cancel();b.fire("requestCanceled",a)}},_handleResponse:function(a){a.task&&a.task.done();var b={url:a.url,html:"",response:a.response};if(!1!==this.fire("handleResponse",b))return this._setContent(a.url,b.html),!0;a.errorCallback(b.errorMessage);return!1},_handleError:function(a,b){a.task&&(a.task.cancel(),d.showNotification(this.getErrorMessage(b,a.url),"warning"))},_responseToHtml:function(a,b){return"photo"==b.type?'<img src="'+CKEDITOR.tools.htmlEncodeAttr(b.url)+'" alt="'+ +CKEDITOR.tools.htmlEncodeAttr(b.title||"")+'" style="max-width:100%;height:auto" />':"video"==b.type||"rich"==b.type?b.html:null},_setContent:function(a,b){this.setData("url",a);this.element.setHtml(b)},_createTask:function(){if(!c||c.isFinished())c=new CKEDITOR.plugins.notificationAggregator(d,e.fetchingMany,e.fetchingOne),c.on("finished",function(){c.notification.hide()});return c.createTask()},_cacheResponse:function(a,b){this._cache[a]=b},_getCachedResponse:function(a){return this._cache[a]}}}, +_jsonp:j}})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedsemantic/icons/embedsemantic.png b/zup-painel/assets/scripts/ckeditor/plugins/embedsemantic/icons/embedsemantic.png new file mode 100644 index 0000000..9a9a735 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/embedsemantic/icons/embedsemantic.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png b/zup-painel/assets/scripts/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png new file mode 100644 index 0000000..97dc754 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/embedsemantic/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/embedsemantic/plugin.js new file mode 100644 index 0000000..703e019 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/embedsemantic/plugin.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("embedsemantic",{icons:"embedsemantic",hidpi:!0,requires:"embedbase",onLoad:function(){this.registerOembedTag()},init:function(a){var b=CKEDITOR.plugins.embedBase.createWidgetBaseDefinition(a),d=b.init;CKEDITOR.tools.extend(b,{dialog:"embedBase",button:a.lang.embedbase.button,allowedContent:"oembed",requiredContent:"oembed",styleableElements:"oembed",providerUrl:new CKEDITOR.template(a.config.embed_provider||"//ckeditor.iframe.ly/api/oembed?url={url}&callback={callback}"), +init:function(){var e=this;d.call(this);this.once("ready",function(){this.data.loadOnReady&&this.loadContent(this.data.url,{callback:function(){e.setData("loadOnReady",!1);a.fire("updateSnapshot")}})})},upcast:function(a,b){if("oembed"==a.name){var c=a.children[0];if(c&&c.type==CKEDITOR.NODE_TEXT&&c.value)return b.url=c.value,b.loadOnReady=!0,c=new CKEDITOR.htmlParser.element("div"),a.replaceWith(c),c.attributes["class"]=a.attributes["class"],c}},downcast:function(a){var b=new CKEDITOR.htmlParser.element("oembed"); +b.add(new CKEDITOR.htmlParser.text(this.data.url));a.attributes["class"]&&(b.attributes["class"]=a.attributes["class"]);return b}},!0);a.widgets.add("embedSemantic",b)},registerOembedTag:function(){var a=CKEDITOR.dtd,b;a.oembed={"#":1};for(b in a)a[b].div&&(a[b].oembed=1)}})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/cs.js new file mode 100644 index 0000000..8599e92 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","cs",{loadError:"Při čtení souboru došlo k chybě.",networkError:"Při nahrávání souboru došlo k chybě v síti.",httpError404:"Při nahrávání souboru došlo k chybě HTTP (404: Soubor nenalezen).",httpError403:"Při nahrávání souboru došlo k chybě HTTP (403: Zakázáno).",httpError:"Při nahrávání souboru došlo k chybě HTTP (chybový stav: %1).",noUrlError:"URL pro nahrání není zadána.",responseError:"Nesprávná odpověď serveru."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/da.js new file mode 100644 index 0000000..cf7dd57 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","da",{loadError:"Der skete en fejl ved indlæsningen af filen.",networkError:"Der skete en netværks fejl under uploadingen.",httpError404:"Der skete en HTTP fejl under uploadingen (404: File not found).",httpError403:"Der skete en HTTP fejl under uploadingen (403: Forbidden).",httpError:"Der skete en HTTP fejl under uploadingen (error status: %1).",noUrlError:"Upload URL er ikke defineret.",responseError:"Incorrect server response."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/de.js new file mode 100644 index 0000000..f5023b0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/de.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","de",{loadError:"Während dem Lesen der Datei ist ein Fehler aufgetreten.",networkError:"Während dem Hochladen der Datei ist ein Netzwerkfehler aufgetreten.",httpError404:"Während dem Hochladen der Datei ist ein HTTP-Fehler aufgetreten (404: Datei nicht gefunden).",httpError403:"Während dem Hochladen der Datei ist ein HTTP-Fehler aufgetreten (403: Verboten).",httpError:"Während dem Hochladen der Datei ist ein HTTP-Fehler aufgetreten (Fehlerstatus: %1).",noUrlError:"Hochlade-URL ist nicht definiert.", +responseError:"Falsche Antwort des Servers."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/en.js new file mode 100644 index 0000000..8a86b1f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","en",{loadError:"Error occurred during file read.",networkError:"Network error occurred during file upload.",httpError404:"HTTP error occurred during file upload (404: File not found).",httpError403:"HTTP error occurred during file upload (403: Forbidden).",httpError:"HTTP error occurred during file upload (error status: %1).",noUrlError:"Upload URL is not defined.",responseError:"Incorrect server response."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/fr.js new file mode 100644 index 0000000..c225092 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/fr.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","fr",{loadError:"Une erreur est survenue lors de la lecture du fichier.",networkError:"Une erreur réseau est survenue lors du téléversement du fichier.",httpError404:"Une erreur HTTP est survenue durant le téléversement du fichier (404: Fichier non trouvé).",httpError403:"Une erreur HTTP est survenue durant le téléversement du fichier (403: Accès refusé).",httpError:"Une erreur HTTP est survenue durant le téléversement du fichier (statut de l'erreur : %1).",noUrlError:"L'URL de téléversement n'est pas spécifiée.", +responseError:"Réponse du serveur incorrecte."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/gl.js new file mode 100644 index 0000000..3ec4f05 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","gl",{loadError:"Produciuse un erro durante a lectura do ficheiro.",networkError:"Produciuse un erro na rede durante o envío do ficheiro.",httpError404:"Produciuse un erro HTTP durante o envío do ficheiro (404: Ficheiro non atopado).",httpError403:"Produciuse un erro HTTP durante o envío do ficheiro (403: Acceso denegado).",httpError:"Produciuse un erro HTTP durante o envío do ficheiro (erro de estado: %1).",noUrlError:"Non foi definido o URL para o envío.",responseError:"Resposta incorrecta do servidor."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/it.js new file mode 100644 index 0000000..ff10fc8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/it.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","it",{loadError:"Si è verificato un errore durante la lettura del file.",networkError:"Si è verificato un errore di rete durante il caricamento del file.",httpError404:"Si è verificato un errore HTTP durante il caricamento del file (404: file non trovato).",httpError403:"Si è verificato un errore HTTP durante il caricamento del file (403: accesso negato).",httpError:"Si è verificato un errore HTTP durante il caricamento del file (stato dell'errore: %1).",noUrlError:"L'URL per il caricamento non è stato definito.", +responseError:"La risposta del server non è corretta."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/ko.js new file mode 100644 index 0000000..33e8d43 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","ko",{loadError:"파일을 읽는 중 오류가 발생했습니다.",networkError:"파일 업로드 중 네트워크 오류가 발생했습니다.",httpError404:"파일 업로드중 HTTP 오류가 발생했습니다 (404: 파일 찾을수 없음).",httpError403:"파일 업로드중 HTTP 오류가 발생했습니다 (403: 권한 없음).",httpError:"파일 업로드중 HTTP 오류가 발생했습니다 (오류 코드 %1).",noUrlError:"업로드 주소가 정의되어 있지 않습니다.",responseError:"잘못된 서버 응답."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/nb.js new file mode 100644 index 0000000..97c5021 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","nb",{loadError:"Feil oppsto under filinnlesing.",networkError:"Nettverksfeil oppsto under filopplasting.",httpError404:"HTTP-feil oppsto under filopplasting (404: Fant ikke filen).",httpError403:"HTTP-feil oppsto under filopplasting (403: Ikke tillatt).",httpError:"HTTP-feil oppsto under filopplasting (feilstatus: %1).",noUrlError:"URL for opplasting er ikke oppgitt.",responseError:"Ukorrekt svar fra serveren."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/nl.js new file mode 100644 index 0000000..d9ab63a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","nl",{loadError:"Fout tijdens lezen van bestand.",networkError:"Netwerkfout tijdens uploaden van bestand.",httpError404:"HTTP fout tijdens uploaden van bestand (404: Bestand niet gevonden).",httpError403:"HTTP fout tijdens uploaden van bestand (403: Verboden).",httpError:"HTTP fout tijdens uploaden van bestand (fout status: %1).",noUrlError:"Upload URL is niet gedefinieerd.",responseError:"Ongeldig antwoord van server."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/pl.js new file mode 100644 index 0000000..b9f3758 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","pl",{loadError:"Błąd podczas odczytu pliku.",networkError:"W trakcie wysyłania pliku pojawił się błąd sieciowy.",httpError404:"Błąd HTTP w trakcie wysyłania pliku (404: Nie znaleziono pliku).",httpError403:"Błąd HTTP w trakcie wysyłania pliku (403: Zabroniony).",httpError:"Błąd HTTP w trakcie wysyłania pliku (status błędu: %1).",noUrlError:"Nie zdefiniowano adresu URL do przesłania pliku.",responseError:"Niepoprawna odpowiedź serwera."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/ru.js new file mode 100644 index 0000000..37e38da --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","ru",{loadError:"Ошибка при чтении файла",networkError:"Network error occurred during file upload.",httpError404:"HTTP error occurred during file upload (404: File not found).",httpError403:"HTTP error occurred during file upload (403: Forbidden).",httpError:"HTTP error occurred during file upload (error status: %1).",noUrlError:"Upload URL is not defined.",responseError:"Некорректный ответ сервера"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/tr.js new file mode 100644 index 0000000..2a355a3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","tr",{loadError:"Dosya okunurken hata oluştu.",networkError:"Dosya gönderilirken ağ hatası oluştu.",httpError404:"Dosya gönderilirken HTTP hatası oluştu (404: Dosya bulunamadı).",httpError403:"Dosya gönderilirken HTTP hatası oluştu (403: Yasaklı).",httpError:"Dosya gönderilirken HTTP hatası oluştu (hata durumu: %1).",noUrlError:"Gönderilecek URL belirtilmedi.",responseError:"Sunucu cevap veremedi."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/zh-cn.js new file mode 100644 index 0000000..88da474 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","zh-cn",{loadError:"读取文件时发生错误。",networkError:"上传文件时发生网络错误。",httpError404:"上传文件时发生 HTTP 错误(404:无法找到文件)。",httpError403:"上传文件时发生 HTTP 错误(403:禁止访问)。",httpError:"上传文件时发生 HTTP 错误(错误代码:%1)。",noUrlError:"上传的 URL 未定义。",responseError:"不正确的服务器响应。"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/zh.js new file mode 100644 index 0000000..1f83cdc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","zh",{loadError:"在讀取檔案時發生錯誤。",networkError:"在上傳檔案時發生網路錯誤。",httpError404:"在上傳檔案時發生 HTTP 錯誤(404:檔案找不到)。",httpError403:"在上傳檔案時發生 HTTP 錯誤(403:禁止)。",httpError:"在上傳檔案時發生 HTTP 錯誤(錯誤狀態:%1)。",noUrlError:"上傳的 URL 未被定義。",responseError:"不正確的伺服器回應。"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/filetools/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/filetools/plugin.js new file mode 100644 index 0000000..539d7f2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/filetools/plugin.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function h(a){this.editor=a;this.loaders=[]}function i(a,b,c){this.editor=a;this.lang=a.lang;"string"===typeof b?(this.data=b,this.file=k(this.data),this.loaded=this.total=this.file.size):(this.data=null,this.file=b,this.total=this.file.size,this.loaded=0);this.fileName=c?c:this.file.name?this.file.name:this.file.type.replace("/",".");this.uploaded=0;this.status="created";this.abort=function(){this.changeStatus("abort")}}function k(a){var b=a.match(j)[1],a=a.replace(j,""),a=atob(a),c= +[],d,f,e,g;for(d=0;d<a.length;d+=512){f=a.slice(d,d+512);e=Array(f.length);for(g=0;g<f.length;g++)e[g]=f.charCodeAt(g);f=new Uint8Array(e);c.push(f)}return new Blob(c,{type:b})}CKEDITOR.plugins.add("filetools",{lang:"en",beforeInit:function(a){a.uploadRepository=new h(a);a.on("fileUploadRequest",function(a){a=a.data.fileLoader;a.xhr.open("POST",a.uploadUrl,!0)},null,null,5);a.on("fileUploadRequest",function(a){var a=a.data.fileLoader,c=new FormData;c.append("upload",a.file,a.fileName);a.xhr.send(c)}, +null,null,999);a.on("fileUploadResponse",function(a){var c=a.data.fileLoader,d=c.xhr,f=a.data;try{var e=JSON.parse(d.responseText);e.error&&e.error.message&&(f.message=e.error.message);e.uploaded?(f.fileName=e.fileName,f.url=e.url):a.cancel()}catch(g){f.message=c.lang.filetools.responseError,window.console&&window.console.log(d.responseText),a.cancel()}},null,null,999)}});h.prototype={create:function(a,b){var c=this.loaders.length,d=new i(this.editor,a,b);d.id=c;this.loaders[c]=d;this.fire("instanceCreated", +d);return d},isFinished:function(){for(var a=0;a<this.loaders.length;++a)if(!this.loaders[a].isFinished())return!1;return!0}};i.prototype={loadAndUpload:function(a){var b=this;this.once("loaded",function(c){c.cancel();b.once("update",function(a){a.cancel()},null,null,0);b.upload(a)},null,null,0);this.load()},load:function(){var a=this,b=this.reader=new FileReader;a.changeStatus("loading");this.abort=function(){a.reader.abort()};b.onabort=function(){a.changeStatus("abort")};b.onerror=function(){a.message= +a.lang.filetools.loadError;a.changeStatus("error")};b.onprogress=function(b){a.loaded=b.loaded;a.update()};b.onload=function(){a.loaded=a.total;a.data=b.result;a.changeStatus("loaded")};b.readAsDataURL(this.file)},upload:function(a){a?(this.uploadUrl=a,this.xhr=new XMLHttpRequest,this.attachRequestListeners(),this.editor.fire("fileUploadRequest",{fileLoader:this})&&this.changeStatus("uploading")):(this.message=this.lang.filetools.noUrlError,this.changeStatus("error"))},attachRequestListeners:function(){var a= +this,b=this.xhr;a.abort=function(){b.abort()};b.onabort=function(){a.changeStatus("abort")};b.onerror=function(){a.message=a.lang.filetools.networkError;a.changeStatus("error")};b.onprogress=function(b){a.uploaded=b.loaded;a.update()};b.onload=function(){a.uploaded=a.total;if(200>b.status||299<b.status)a.message=a.lang.filetools["httpError"+b.status],a.message||(a.message=a.lang.filetools.httpError.replace("%1",b.status)),a.changeStatus("error");else{for(var c={fileLoader:a},d=["message","fileName", +"url"],f=a.editor.fire("fileUploadResponse",c),e=0;e<d.length;e++){var g=d[e];"string"===typeof c[g]&&(a[g]=c[g])}!1===f?a.changeStatus("error"):a.changeStatus("uploaded")}}},changeStatus:function(a){this.status=a;if("error"==a||"abort"==a||"loaded"==a||"uploaded"==a)this.abort=function(){};this.fire(a);this.update()},update:function(){this.fire("update")},isFinished:function(){return!!this.status.match(/^(?:loaded|uploaded|error|abort)$/)}};CKEDITOR.event.implementOn(h.prototype);CKEDITOR.event.implementOn(i.prototype); +var j=/^data:(\S*?);base64,/;CKEDITOR.fileTools||(CKEDITOR.fileTools={});CKEDITOR.tools.extend(CKEDITOR.fileTools,{uploadRepository:h,fileLoader:i,getUploadUrl:function(a,b){var c=CKEDITOR.tools.capitalize;return b&&a[b+"UploadUrl"]?a[b+"UploadUrl"]:a.uploadUrl?a.uploadUrl:b&&a["filebrowser"+c(b,1)+"UploadUrl"]?a["filebrowser"+c(b,1)+"UploadUrl"]+"&responseType=json":a.filebrowserUploadUrl?a.filebrowserUploadUrl+"&responseType=json":null},isTypeSupported:function(a,b){return!!a.type.match(b)}})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/dialogs/find.js b/zup-painel/assets/scripts/ckeditor/plugins/find/dialogs/find.js new file mode 100644 index 0000000..98c08e8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/dialogs/find.js @@ -0,0 +1,24 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function y(c){return c.type==CKEDITOR.NODE_TEXT&&0<c.getLength()&&(!o||!c.isReadOnly())}function s(c){return!(c.type==CKEDITOR.NODE_ELEMENT&&c.isBlockBoundary(CKEDITOR.tools.extend({},CKEDITOR.dtd.$empty,CKEDITOR.dtd.$nonEditable)))}function n(c,g){function l(a,b){var d=this,c=new CKEDITOR.dom.walker(a);c.guard=b?s:function(a){!s(a)&&(d._.matchBoundary=!0)};c.evaluator=y;c.breakOnFalse=1;a.startContainer.type==CKEDITOR.NODE_TEXT&&(this.textNode=a.startContainer,this.offset=a.startOffset- +1);this._={matchWord:b,walker:c,matchBoundary:!1}}function n(a,b){var d=c.createRange();d.setStart(a.textNode,b?a.offset:a.offset+1);d.setEndAt(c.editable(),CKEDITOR.POSITION_BEFORE_END);return d}function p(a){var b=c.getSelection(),d=c.editable();b&&!a?(a=b.getRanges()[0].clone(),a.collapse(!0)):(a=c.createRange(),a.setStartAt(d,CKEDITOR.POSITION_AFTER_START));a.setEndAt(d,CKEDITOR.POSITION_BEFORE_END);return a}var t=new CKEDITOR.style(CKEDITOR.tools.extend({attributes:{"data-cke-highlight":1},fullMatch:1, +ignoreReadonly:1,childRule:function(){return 0}},c.config.find_highlight,!0));l.prototype={next:function(){return this.move()},back:function(){return this.move(!0)},move:function(a){var b=this.textNode;if(null===b)return u.call(this);this._.matchBoundary=!1;if(b&&a&&0<this.offset)this.offset--;else if(b&&this.offset<b.getLength()-1)this.offset++;else{for(b=null;!b&&!(b=this._.walker[a?"previous":"next"].call(this._.walker),this._.matchWord&&!b||this._.walker._.end););this.offset=(this.textNode=b)? +a?b.getLength()-1:0:0}return u.call(this)}};var q=function(a,b){this._={walker:a,cursors:[],rangeLength:b,highlightRange:null,isMatched:0}};q.prototype={toDomRange:function(){var a=c.createRange(),b=this._.cursors;if(1>b.length){var d=this._.walker.textNode;if(d)a.setStartAfter(d);else return null}else d=b[0],b=b[b.length-1],a.setStart(d.textNode,d.offset),a.setEnd(b.textNode,b.offset+1);return a},updateFromDomRange:function(a){var b=new l(a);this._.cursors=[];do a=b.next(),a.character&&this._.cursors.push(a); +while(a.character);this._.rangeLength=this._.cursors.length},setMatched:function(){this._.isMatched=!0},clearMatched:function(){this._.isMatched=!1},isMatched:function(){return this._.isMatched},highlight:function(){if(!(1>this._.cursors.length)){this._.highlightRange&&this.removeHighlight();var a=this.toDomRange(),b=a.createBookmark();t.applyToRange(a,c);a.moveToBookmark(b);this._.highlightRange=a;b=a.startContainer;b.type!=CKEDITOR.NODE_ELEMENT&&(b=b.getParent());b.scrollIntoView();this.updateFromDomRange(a)}}, +removeHighlight:function(){if(this._.highlightRange){var a=this._.highlightRange.createBookmark();t.removeFromRange(this._.highlightRange,c);this._.highlightRange.moveToBookmark(a);this.updateFromDomRange(this._.highlightRange);this._.highlightRange=null}},isReadOnly:function(){return!this._.highlightRange?0:this._.highlightRange.startContainer.isReadOnly()},moveBack:function(){var a=this._.walker.back(),b=this._.cursors;a.hitMatchBoundary&&(this._.cursors=b=[]);b.unshift(a);b.length>this._.rangeLength&& +b.pop();return a},moveNext:function(){var a=this._.walker.next(),b=this._.cursors;a.hitMatchBoundary&&(this._.cursors=b=[]);b.push(a);b.length>this._.rangeLength&&b.shift();return a},getEndCharacter:function(){var a=this._.cursors;return 1>a.length?null:a[a.length-1].character},getNextCharacterRange:function(a){var b,d;d=this._.cursors;d=(b=d[d.length-1])&&b.textNode?new l(n(b)):this._.walker;return new q(d,a)},getCursors:function(){return this._.cursors}};var v=function(a,b){var d=[-1];b&&(a=a.toLowerCase()); +for(var c=0;c<a.length;c++)for(d.push(d[c]+1);0<d[c+1]&&a.charAt(c)!=a.charAt(d[c+1]-1);)d[c+1]=d[d[c+1]-1]+1;this._={overlap:d,state:0,ignoreCase:!!b,pattern:a}};v.prototype={feedCharacter:function(a){for(this._.ignoreCase&&(a=a.toLowerCase());;){if(a==this._.pattern.charAt(this._.state))return this._.state++,this._.state==this._.pattern.length?(this._.state=0,2):1;if(this._.state)this._.state=this._.overlap[this._.state];else return 0}return null},reset:function(){this._.state=0}};var z=/[.,"'?!;: \u0085\u00a0\u1680\u280e\u2028\u2029\u202f\u205f\u3000]/, +w=function(a){if(!a)return!0;var b=a.charCodeAt(0);return 9<=b&&13>=b||8192<=b&&8202>=b||z.test(a)},e={searchRange:null,matchRange:null,find:function(a,b,d,f,e,A){this.matchRange?(this.matchRange.removeHighlight(),this.matchRange=this.matchRange.getNextCharacterRange(a.length)):this.matchRange=new q(new l(this.searchRange),a.length);for(var i=new v(a,!b),j=0,k="%";null!==k;){for(this.matchRange.moveNext();k=this.matchRange.getEndCharacter();){j=i.feedCharacter(k);if(2==j)break;this.matchRange.moveNext().hitMatchBoundary&& +i.reset()}if(2==j){if(d){var h=this.matchRange.getCursors(),m=h[h.length-1],h=h[0],g=c.createRange();g.setStartAt(c.editable(),CKEDITOR.POSITION_AFTER_START);g.setEnd(h.textNode,h.offset);h=g;m=n(m);h.trim();m.trim();h=new l(h,!0);m=new l(m,!0);if(!w(h.back().character)||!w(m.next().character))continue}this.matchRange.setMatched();!1!==e&&this.matchRange.highlight();return!0}}this.matchRange.clearMatched();this.matchRange.removeHighlight();return f&&!A?(this.searchRange=p(1),this.matchRange=null, +arguments.callee.apply(this,Array.prototype.slice.call(arguments).concat([!0]))):!1},replaceCounter:0,replace:function(a,b,d,f,e,g,i){o=1;a=0;if(this.matchRange&&this.matchRange.isMatched()&&!this.matchRange._.isReplaced&&!this.matchRange.isReadOnly()){this.matchRange.removeHighlight();b=this.matchRange.toDomRange();d=c.document.createText(d);if(!i){var j=c.getSelection();j.selectRanges([b]);c.fire("saveSnapshot")}b.deleteContents();b.insertNode(d);i||(j.selectRanges([b]),c.fire("saveSnapshot")); +this.matchRange.updateFromDomRange(b);i||this.matchRange.highlight();this.matchRange._.isReplaced=!0;this.replaceCounter++;a=1}else a=this.find(b,f,e,g,!i);o=0;return a}},f=c.lang.find;return{title:f.title,resizable:CKEDITOR.DIALOG_RESIZE_NONE,minWidth:350,minHeight:170,buttons:[CKEDITOR.dialog.cancelButton(c,{label:c.lang.common.close})],contents:[{id:"find",label:f.find,title:f.find,accessKey:"",elements:[{type:"hbox",widths:["230px","90px"],children:[{type:"text",id:"txtFindFind",label:f.findWhat, +isChanged:!1,labelLayout:"horizontal",accessKey:"F"},{type:"button",id:"btnFind",align:"left",style:"width:100%",label:f.find,onClick:function(){var a=this.getDialog();e.find(a.getValueOf("find","txtFindFind"),a.getValueOf("find","txtFindCaseChk"),a.getValueOf("find","txtFindWordChk"),a.getValueOf("find","txtFindCyclic"))||alert(f.notFoundMsg)}}]},{type:"fieldset",label:CKEDITOR.tools.htmlEncode(f.findOptions),style:"margin-top:29px",children:[{type:"vbox",padding:0,children:[{type:"checkbox",id:"txtFindCaseChk", +isChanged:!1,label:f.matchCase},{type:"checkbox",id:"txtFindWordChk",isChanged:!1,label:f.matchWord},{type:"checkbox",id:"txtFindCyclic",isChanged:!1,"default":!0,label:f.matchCyclic}]}]}]},{id:"replace",label:f.replace,accessKey:"M",elements:[{type:"hbox",widths:["230px","90px"],children:[{type:"text",id:"txtFindReplace",label:f.findWhat,isChanged:!1,labelLayout:"horizontal",accessKey:"F"},{type:"button",id:"btnFindReplace",align:"left",style:"width:100%",label:f.replace,onClick:function(){var a= +this.getDialog();e.replace(a,a.getValueOf("replace","txtFindReplace"),a.getValueOf("replace","txtReplace"),a.getValueOf("replace","txtReplaceCaseChk"),a.getValueOf("replace","txtReplaceWordChk"),a.getValueOf("replace","txtReplaceCyclic"))||alert(f.notFoundMsg)}}]},{type:"hbox",widths:["230px","90px"],children:[{type:"text",id:"txtReplace",label:f.replaceWith,isChanged:!1,labelLayout:"horizontal",accessKey:"R"},{type:"button",id:"btnReplaceAll",align:"left",style:"width:100%",label:f.replaceAll,isChanged:!1, +onClick:function(){var a=this.getDialog();e.replaceCounter=0;e.searchRange=p(1);e.matchRange&&(e.matchRange.removeHighlight(),e.matchRange=null);for(c.fire("saveSnapshot");e.replace(a,a.getValueOf("replace","txtFindReplace"),a.getValueOf("replace","txtReplace"),a.getValueOf("replace","txtReplaceCaseChk"),a.getValueOf("replace","txtReplaceWordChk"),!1,!0););e.replaceCounter?(alert(f.replaceSuccessMsg.replace(/%1/,e.replaceCounter)),c.fire("saveSnapshot")):alert(f.notFoundMsg)}}]},{type:"fieldset", +label:CKEDITOR.tools.htmlEncode(f.findOptions),children:[{type:"vbox",padding:0,children:[{type:"checkbox",id:"txtReplaceCaseChk",isChanged:!1,label:f.matchCase},{type:"checkbox",id:"txtReplaceWordChk",isChanged:!1,label:f.matchWord},{type:"checkbox",id:"txtReplaceCyclic",isChanged:!1,"default":!0,label:f.matchCyclic}]}]}]}],onLoad:function(){var a=this,b,c=0;this.on("hide",function(){c=0});this.on("show",function(){c=1});this.selectPage=CKEDITOR.tools.override(this.selectPage,function(f){return function(e){f.call(a, +e);var g=a._.tabs[e],i;i="find"===e?"txtFindWordChk":"txtReplaceWordChk";b=a.getContentElement(e,"find"===e?"txtFindFind":"txtFindReplace");a.getContentElement(e,i);g.initialized||(CKEDITOR.document.getById(b._.inputId),g.initialized=!0);if(c){var j,e="find"===e?1:0,g=1-e,k,h=r.length;for(k=0;k<h;k++)i=this.getContentElement(x[e],r[k][e]),j=this.getContentElement(x[g],r[k][g]),j.setValue(i.getValue())}}})},onShow:function(){e.searchRange=p();var a=this.getParentEditor().getSelection().getSelectedText(), +b=this.getContentElement(g,"find"==g?"txtFindFind":"txtFindReplace");b.setValue(a);b.select();this.selectPage(g);this[("find"==g&&this._.editor.readOnly?"hide":"show")+"Page"]("replace")},onHide:function(){var a;e.matchRange&&e.matchRange.isMatched()&&(e.matchRange.removeHighlight(),c.focus(),(a=e.matchRange.toDomRange())&&c.getSelection().selectRanges([a]));delete e.matchRange},onFocus:function(){return"replace"==g?this.getContentElement("replace","txtFindReplace"):this.getContentElement("find", +"txtFindFind")}}}var o,u=function(){return{textNode:this.textNode,offset:this.offset,character:this.textNode?this.textNode.getText().charAt(this.offset):null,hitMatchBoundary:this._.matchBoundary}},x=["find","replace"],r=[["txtFindFind","txtFindReplace"],["txtFindCaseChk","txtReplaceCaseChk"],["txtFindWordChk","txtReplaceWordChk"],["txtFindCyclic","txtReplaceCyclic"]];CKEDITOR.dialog.add("find",function(c){return n(c,"find")});CKEDITOR.dialog.add("replace",function(c){return n(c,"replace")})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/icons/find-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/find-rtl.png new file mode 100644 index 0000000..02f40cb Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/find-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/icons/find.png b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/find.png new file mode 100644 index 0000000..02f40cb Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/find.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/icons/hidpi/find-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/hidpi/find-rtl.png new file mode 100644 index 0000000..cbf9ced Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/hidpi/find-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/icons/hidpi/find.png b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/hidpi/find.png new file mode 100644 index 0000000..cbf9ced Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/hidpi/find.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/icons/hidpi/replace.png b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/hidpi/replace.png new file mode 100644 index 0000000..9efd8bb Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/hidpi/replace.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/icons/replace.png b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/replace.png new file mode 100644 index 0000000..e68afcb Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/find/icons/replace.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/af.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/af.js new file mode 100644 index 0000000..79e13e8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/af.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","af",{find:"Soek",findOptions:"Find Options",findWhat:"Soek na:",matchCase:"Hoof/kleinletter sensitief",matchCyclic:"Soek deurlopend",matchWord:"Hele woord moet voorkom",notFoundMsg:"Teks nie gevind nie.",replace:"Vervang",replaceAll:"Vervang alles",replaceSuccessMsg:"%1 voorkoms(te) vervang.",replaceWith:"Vervang met:",title:"Soek en vervang"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ar.js new file mode 100644 index 0000000..e995c89 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ar.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ar",{find:"بحث",findOptions:"Find Options",findWhat:"البحث بـ:",matchCase:"مطابقة حالة الأحرف",matchCyclic:"مطابقة دورية",matchWord:"مطابقة بالكامل",notFoundMsg:"لم يتم العثور على النص المحدد.",replace:"إستبدال",replaceAll:"إستبدال الكل",replaceSuccessMsg:"تم استبدال 1% من الحالات ",replaceWith:"إستبدال بـ:",title:"بحث واستبدال"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/bg.js new file mode 100644 index 0000000..844a0b2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/bg.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","bg",{find:"Търсене",findOptions:"Find Options",findWhat:"Търси за:",matchCase:"Съвпадение",matchCyclic:"Циклично съвпадение",matchWord:"Съвпадение с дума",notFoundMsg:"Указаният текст не е намерен.",replace:"Препокриване",replaceAll:"Препокрий всички",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Препокрива с:",title:"Търсене и препокриване"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/bn.js new file mode 100644 index 0000000..f80be45 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/bn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","bn",{find:"খোজো",findOptions:"Find Options",findWhat:"যা খুঁজতে হবে:",matchCase:"কেস মিলাও",matchCyclic:"Match cyclic",matchWord:"পুরা শব্দ মেলাও",notFoundMsg:"আপনার উল্লেখিত টেকস্ট পাওয়া যায়নি",replace:"রিপ্লেস",replaceAll:"সব বদলে দাও",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"যার সাথে বদলাতে হবে:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/bs.js new file mode 100644 index 0000000..4941067 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/bs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","bs",{find:"Naði",findOptions:"Find Options",findWhat:"Naði šta:",matchCase:"Uporeðuj velika/mala slova",matchCyclic:"Match cyclic",matchWord:"Uporeðuj samo cijelu rijeè",notFoundMsg:"Traženi tekst nije pronaðen.",replace:"Zamjeni",replaceAll:"Zamjeni sve",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Zamjeni sa:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ca.js new file mode 100644 index 0000000..85448cf --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ca",{find:"Cerca",findOptions:"Opcions de Cerca",findWhat:"Cerca el:",matchCase:"Distingeix majúscules/minúscules",matchCyclic:"Coincidència cíclica",matchWord:"Només paraules completes",notFoundMsg:"El text especificat no s'ha trobat.",replace:"Reemplaça",replaceAll:"Reemplaça-ho tot",replaceSuccessMsg:"%1 ocurrència/es reemplaçada/es.",replaceWith:"Reemplaça amb:",title:"Cerca i reemplaça"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/cs.js new file mode 100644 index 0000000..a63cd19 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","cs",{find:"Hledat",findOptions:"Možnosti hledání",findWhat:"Co hledat:",matchCase:"Rozlišovat velikost písma",matchCyclic:"Procházet opakovaně",matchWord:"Pouze celá slova",notFoundMsg:"Hledaný text nebyl nalezen.",replace:"Nahradit",replaceAll:"Nahradit vše",replaceSuccessMsg:"%1 nahrazení.",replaceWith:"Čím nahradit:",title:"Najít a nahradit"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/cy.js new file mode 100644 index 0000000..3e87336 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/cy.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","cy",{find:"Chwilio",findOptions:"Opsiynau Chwilio",findWhat:"Chwilio'r term:",matchCase:"Cydweddu'r cas",matchCyclic:"Cydweddu'n gylchol",matchWord:"Cydweddu gair cyfan",notFoundMsg:"Nid oedd y testun wedi'i ddarganfod.",replace:"Amnewid Un",replaceAll:"Amnewid Pob",replaceSuccessMsg:"Amnewidiwyd %1 achlysur.",replaceWith:"Amnewid gyda:",title:"Chwilio ac Amnewid"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/da.js new file mode 100644 index 0000000..35693e2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/da.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","da",{find:"Søg",findOptions:"Find muligheder",findWhat:"Søg efter:",matchCase:"Forskel på store og små bogstaver",matchCyclic:"Match cyklisk",matchWord:"Kun hele ord",notFoundMsg:"Søgeteksten blev ikke fundet",replace:"Erstat",replaceAll:"Erstat alle",replaceSuccessMsg:"%1 forekomst(er) erstattet.",replaceWith:"Erstat med:",title:"Søg og erstat"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/de.js new file mode 100644 index 0000000..548c53b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","de",{find:"Suchen",findOptions:"Suchoptionen",findWhat:"Suche nach:",matchCase:"Groß-/Kleinschreibung beachten",matchCyclic:"Zyklische Suche",matchWord:"Nur ganze Worte suchen",notFoundMsg:"Der angegebene Text wurde nicht gefunden.",replace:"Ersetzen",replaceAll:"Alle ersetzen",replaceSuccessMsg:"%1 Vorkommen ersetzt.",replaceWith:"Ersetze mit:",title:"Suchen und Ersetzen"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/el.js new file mode 100644 index 0000000..f559f2a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/el.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","el",{find:"Εύρεση",findOptions:"Επιλογές Εύρεσης",findWhat:"Εύρεση για:",matchCase:"Ταίριασμα πεζών/κεφαλαίων",matchCyclic:"Αναδρομική εύρεση",matchWord:"Εύρεση μόνο πλήρων λέξεων",notFoundMsg:"Το κείμενο δεν βρέθηκε.",replace:"Αντικατάσταση",replaceAll:"Αντικατάσταση Όλων",replaceSuccessMsg:"Ο(ι) όρος(-οι) αντικαταστήθηκε(-αν) %1 φορές.",replaceWith:"Αντικατάσταση με:",title:"Εύρεση και Αντικατάσταση"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en-au.js new file mode 100644 index 0000000..ad03379 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en-au.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","en-au",{find:"Find",findOptions:"Find Options",findWhat:"Find what:",matchCase:"Match case",matchCyclic:"Match cyclic",matchWord:"Match whole word",notFoundMsg:"The specified text was not found.",replace:"Replace",replaceAll:"Replace All",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Replace with:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en-ca.js new file mode 100644 index 0000000..d217f65 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","en-ca",{find:"Find",findOptions:"Find Options",findWhat:"Find what:",matchCase:"Match case",matchCyclic:"Match cyclic",matchWord:"Match whole word",notFoundMsg:"The specified text was not found.",replace:"Replace",replaceAll:"Replace All",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Replace with:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en-gb.js new file mode 100644 index 0000000..dfbafb7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en-gb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","en-gb",{find:"Find",findOptions:"Find Options",findWhat:"Find what:",matchCase:"Match case",matchCyclic:"Match cyclic",matchWord:"Match whole word",notFoundMsg:"The specified text was not found.",replace:"Replace",replaceAll:"Replace All",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Replace with:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en.js new file mode 100644 index 0000000..6865f0b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","en",{find:"Find",findOptions:"Find Options",findWhat:"Find what:",matchCase:"Match case",matchCyclic:"Match cyclic",matchWord:"Match whole word",notFoundMsg:"The specified text was not found.",replace:"Replace",replaceAll:"Replace All",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Replace with:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/eo.js new file mode 100644 index 0000000..9fde69e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/eo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","eo",{find:"Serĉi",findOptions:"Opcioj pri Serĉado",findWhat:"Serĉi:",matchCase:"Kongruigi Usklecon",matchCyclic:"Cikla Serĉado",matchWord:"Tuta Vorto",notFoundMsg:"La celteksto ne estas trovita.",replace:"Anstataŭigi",replaceAll:"Anstataŭigi Ĉion",replaceSuccessMsg:"%1 anstataŭigita(j) apero(j).",replaceWith:"Anstataŭigi per:",title:"Serĉi kaj Anstataŭigi"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/es.js new file mode 100644 index 0000000..2efd39c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/es.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","es",{find:"Buscar",findOptions:"Opciones de búsqueda",findWhat:"Texto a buscar:",matchCase:"Coincidir may/min",matchCyclic:"Buscar en todo el contenido",matchWord:"Coincidir toda la palabra",notFoundMsg:"El texto especificado no ha sido encontrado.",replace:"Reemplazar",replaceAll:"Reemplazar Todo",replaceSuccessMsg:"La expresión buscada ha sido reemplazada %1 veces.",replaceWith:"Reemplazar con:",title:"Buscar y Reemplazar"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/et.js new file mode 100644 index 0000000..bcc3921 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/et.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","et",{find:"Otsi",findOptions:"Otsingu valikud",findWhat:"Otsitav:",matchCase:"Suur- ja väiketähtede eristamine",matchCyclic:"Jätkatakse algusest",matchWord:"Ainult terved sõnad",notFoundMsg:"Otsitud teksti ei leitud.",replace:"Asenda",replaceAll:"Asenda kõik",replaceSuccessMsg:"%1 vastet asendati.",replaceWith:"Asendus:",title:"Otsimine ja asendamine"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/eu.js new file mode 100644 index 0000000..f082555 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/eu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","eu",{find:"Bilatu",findOptions:"Find Options",findWhat:"Zer bilatu:",matchCase:"Maiuskula/minuskula",matchCyclic:"Bilaketa ziklikoa",matchWord:"Esaldi osoa bilatu",notFoundMsg:"Idatzitako testua ez da topatu.",replace:"Ordezkatu",replaceAll:"Ordeztu Guztiak",replaceSuccessMsg:"Zenbat aldiz ordeztua: %1",replaceWith:"Zerekin ordeztu:",title:"Bilatu eta Ordeztu"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fa.js new file mode 100644 index 0000000..2339c6d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fa.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","fa",{find:"جستجو",findOptions:"گزینه​های جستجو",findWhat:"چه چیز را مییابید:",matchCase:"همسانی در بزرگی و کوچکی نویسه​ها",matchCyclic:"همسانی با چرخه",matchWord:"همسانی با واژهٴ کامل",notFoundMsg:"متن موردنظر یافت نشد.",replace:"جایگزینی",replaceAll:"جایگزینی همهٴ یافته​ها",replaceSuccessMsg:"%1 رخداد جایگزین شد.",replaceWith:"جایگزینی با:",title:"جستجو و جایگزینی"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fi.js new file mode 100644 index 0000000..79daf81 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","fi",{find:"Etsi",findOptions:"Hakuasetukset",findWhat:"Etsi mitä:",matchCase:"Sama kirjainkoko",matchCyclic:"Kierrä ympäri",matchWord:"Koko sana",notFoundMsg:"Etsittyä tekstiä ei löytynyt.",replace:"Korvaa",replaceAll:"Korvaa kaikki",replaceSuccessMsg:"%1 esiintymä(ä) korvattu.",replaceWith:"Korvaa tällä:",title:"Etsi ja korvaa"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fo.js new file mode 100644 index 0000000..1e3dc04 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","fo",{find:"Leita",findOptions:"Finn møguleikar",findWhat:"Finn:",matchCase:"Munur á stórum og smáum bókstavum",matchCyclic:"Match cyclic",matchWord:"Bert heil orð",notFoundMsg:"Leititeksturin varð ikki funnin",replace:"Yvirskriva",replaceAll:"Yvirskriva alt",replaceSuccessMsg:"%1 úrslit broytt.",replaceWith:"Yvirskriva við:",title:"Finn og broyt"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fr-ca.js new file mode 100644 index 0000000..59a8e22 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fr-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","fr-ca",{find:"Rechercher",findOptions:"Options de recherche",findWhat:"Rechercher:",matchCase:"Respecter la casse",matchCyclic:"Recherche cyclique",matchWord:"Mot entier",notFoundMsg:"Le texte indiqué est introuvable.",replace:"Remplacer",replaceAll:"Tout remplacer",replaceSuccessMsg:"%1 remplacements.",replaceWith:"Remplacer par:",title:"Rechercher et remplacer"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fr.js new file mode 100644 index 0000000..a7b4218 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","fr",{find:"Trouver",findOptions:"Options de recherche",findWhat:"Expression à trouver: ",matchCase:"Respecter la casse",matchCyclic:"Boucler",matchWord:"Mot entier uniquement",notFoundMsg:"Le texte spécifié ne peut être trouvé.",replace:"Remplacer",replaceAll:"Remplacer tout",replaceSuccessMsg:"%1 occurrence(s) replacée(s).",replaceWith:"Remplacer par: ",title:"Trouver et remplacer"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/gl.js new file mode 100644 index 0000000..be89248 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","gl",{find:"Buscar",findOptions:"Buscar opcións",findWhat:"Texto a buscar:",matchCase:"Coincidir Mai./min.",matchCyclic:"Coincidencia cíclica",matchWord:"Coincidencia coa palabra completa",notFoundMsg:"Non se atopou o texto indicado.",replace:"Substituir",replaceAll:"Substituír todo",replaceSuccessMsg:"%1 concorrencia(s) substituída(s).",replaceWith:"Substituír con:",title:"Buscar e substituír"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/gu.js new file mode 100644 index 0000000..572afcf --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/gu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","gu",{find:"શોધવું",findOptions:"વીકલ્પ શોધો",findWhat:"આ શોધો",matchCase:"કેસ સરખા રાખો",matchCyclic:"સરખાવવા બધા",matchWord:"બઘા શબ્દ સરખા રાખો",notFoundMsg:"તમે શોધેલી ટેક્સ્ટ નથી મળી",replace:"રિપ્લેસ/બદલવું",replaceAll:"બઘા બદલી ",replaceSuccessMsg:"%1 ફેરફારો બાદલાયા છે.",replaceWith:"આનાથી બદલો",title:"શોધવું અને બદલવું"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/he.js new file mode 100644 index 0000000..ea4e422 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/he.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","he",{find:"חיפוש",findOptions:"אפשרויות חיפוש",findWhat:"חיפוש מחרוזת:",matchCase:"הבחנה בין אותיות רשיות לקטנות (Case)",matchCyclic:"התאמה מחזורית",matchWord:"התאמה למילה המלאה",notFoundMsg:"הטקסט המבוקש לא נמצא.",replace:"החלפה",replaceAll:"החלפה בכל העמוד",replaceSuccessMsg:"%1 טקסטים הוחלפו.",replaceWith:"החלפה במחרוזת:",title:"חיפוש והחלפה"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/hi.js new file mode 100644 index 0000000..d67da0a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/hi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","hi",{find:"खोजें",findOptions:"Find Options",findWhat:"यह खोजें:",matchCase:"केस मिलायें",matchCyclic:"Match cyclic",matchWord:"पूरा शब्द मिलायें",notFoundMsg:"आपके द्वारा दिया गया टेक्स्ट नहीं मिला",replace:"रीप्लेस",replaceAll:"सभी रिप्लेस करें",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"इससे रिप्लेस करें:",title:"खोजें और बदलें"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/hr.js new file mode 100644 index 0000000..bcca21e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/hr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","hr",{find:"Pronađi",findOptions:"Opcije traženja",findWhat:"Pronađi:",matchCase:"Usporedi mala/velika slova",matchCyclic:"Usporedi kružno",matchWord:"Usporedi cijele riječi",notFoundMsg:"Traženi tekst nije pronađen.",replace:"Zamijeni",replaceAll:"Zamijeni sve",replaceSuccessMsg:"Zamijenjeno %1 pojmova.",replaceWith:"Zamijeni s:",title:"Pronađi i zamijeni"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/hu.js new file mode 100644 index 0000000..6ca2b80 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/hu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","hu",{find:"Keresés",findOptions:"Find Options",findWhat:"Keresett szöveg:",matchCase:"kis- és nagybetű megkülönböztetése",matchCyclic:"Ciklikus keresés",matchWord:"csak ha ez a teljes szó",notFoundMsg:"A keresett szöveg nem található.",replace:"Csere",replaceAll:"Az összes cseréje",replaceSuccessMsg:"%1 egyezőség cserélve.",replaceWith:"Csere erre:",title:"Keresés és csere"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/id.js new file mode 100644 index 0000000..4257045 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/id.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","id",{find:"Temukan",findOptions:"Opsi menemukan",findWhat:"Temukan apa:",matchCase:"Match case",matchCyclic:"Match cyclic",matchWord:"Match whole word",notFoundMsg:"The specified text was not found.",replace:"Ganti",replaceAll:"Ganti Semua",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Ganti dengan:",title:"Temukan dan Ganti"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/is.js new file mode 100644 index 0000000..d69cba6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/is.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","is",{find:"Leita",findOptions:"Find Options",findWhat:"Leita að:",matchCase:"Gera greinarmun á¡ há¡- og lágstöfum",matchCyclic:"Match cyclic",matchWord:"Aðeins heil orð",notFoundMsg:"Leitartexti fannst ekki!",replace:"Skipta út",replaceAll:"Skipta út allsstaðar",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Skipta út fyrir:",title:"Finna og skipta"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/it.js new file mode 100644 index 0000000..2aed2ad --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","it",{find:"Trova",findOptions:"Opzioni di ricerca",findWhat:"Trova:",matchCase:"Maiuscole/minuscole",matchCyclic:"Ricerca ciclica",matchWord:"Solo parole intere",notFoundMsg:"L'elemento cercato non è stato trovato.",replace:"Sostituisci",replaceAll:"Sostituisci tutto",replaceSuccessMsg:"%1 occorrenza(e) sostituite.",replaceWith:"Sostituisci con:",title:"Cerca e Sostituisci"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ja.js new file mode 100644 index 0000000..f2043d1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ja.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ja",{find:"検索",findOptions:"検索オプション",findWhat:"検索する文字列:",matchCase:"大文字と小文字を区別する",matchCyclic:"末尾に逹したら先頭に戻る",matchWord:"単語単位で探す",notFoundMsg:"指定された文字列は見つかりませんでした。",replace:"置換",replaceAll:"すべて置換",replaceSuccessMsg:"%1 個置換しました。",replaceWith:"置換後の文字列:",title:"検索と置換"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ka.js new file mode 100644 index 0000000..d5d8dda --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ka.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ka",{find:"ძებნა",findOptions:"Find Options",findWhat:"საძიებელი ტექსტი:",matchCase:"დიდი და პატარა ასოების დამთხვევა",matchCyclic:"დოკუმენტის ბოლოში გასვლის მერე თავიდან დაწყება",matchWord:"მთელი სიტყვის დამთხვევა",notFoundMsg:"მითითებული ტექსტი არ მოიძებნა.",replace:"შეცვლა",replaceAll:"ყველას შეცვლა",replaceSuccessMsg:"%1 მოძებნილი შეიცვალა.",replaceWith:"შეცვლის ტექსტი:",title:"ძებნა და შეცვლა"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/km.js new file mode 100644 index 0000000..3815f2c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/km.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","km",{find:"ស្វែងរក",findOptions:"ជម្រើស​ស្វែង​រក",findWhat:"ស្វែងរកអ្វី:",matchCase:"ករណី​ដំណូច",matchCyclic:"ត្រូវ​នឹង cyclic",matchWord:"ដូច​នឹង​ពាក្យ​ទាំង​មូល",notFoundMsg:"រក​មិន​ឃើញ​ពាក្យ​ដែល​បាន​បញ្ជាក់។",replace:"ជំនួស",replaceAll:"ជំនួសទាំងអស់",replaceSuccessMsg:"ការ​ជំនួស​ចំនួន %1 បាន​កើត​ឡើង។",replaceWith:"ជំនួសជាមួយ:",title:"រក​និង​ជំនួស"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ko.js new file mode 100644 index 0000000..5443e52 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ko",{find:"찾기",findOptions:"찾기 조건",findWhat:"찾을 내용:",matchCase:"대소문자 구분",matchCyclic:"되돌이 검색",matchWord:"온전한 단어",notFoundMsg:"문자열을 찾을 수 없습니다.",replace:"바꾸기",replaceAll:"모두 바꾸기",replaceSuccessMsg:"%1개의 항목이 바뀌었습니다.",replaceWith:"바꿀 내용:",title:"찾기 및 바꾸기"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ku.js new file mode 100644 index 0000000..54cc3c9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ku.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ku",{find:"گەڕان",findOptions:"هەڵبژاردەکانی گەڕان",findWhat:"گەڕان بەدووای:",matchCase:"جیاکردنەوه لەنێوان پیتی گەورەو بچووك",matchCyclic:"گەڕان لەهەموو پەڕەکه",matchWord:"تەنەا هەموو وشەکه",notFoundMsg:"هیچ دەقه گەڕانێك نەدۆزراوه.",replace:"لەبریدانان",replaceAll:"لەبریدانانی هەمووی",replaceSuccessMsg:" پێشهاتە(ی) لەبری دانرا. %1",replaceWith:"لەبریدانان به:",title:"گەڕان و لەبریدانان"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/lt.js new file mode 100644 index 0000000..2c55039 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/lt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","lt",{find:"Rasti",findOptions:"Paieškos nustatymai",findWhat:"Surasti tekstą:",matchCase:"Skirti didžiąsias ir mažąsias raides",matchCyclic:"Sutampantis cikliškumas",matchWord:"Atitikti pilną žodį",notFoundMsg:"Nurodytas tekstas nerastas.",replace:"Pakeisti",replaceAll:"Pakeisti viską",replaceSuccessMsg:"%1 sutapimas(ų) buvo pakeisti.",replaceWith:"Pakeisti tekstu:",title:"Surasti ir pakeisti"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/lv.js new file mode 100644 index 0000000..12a554c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/lv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","lv",{find:"Meklēt",findOptions:"Meklēt uzstādījumi",findWhat:"Meklēt:",matchCase:"Reģistrjūtīgs",matchCyclic:"Sakrist cikliski",matchWord:"Jāsakrīt pilnībā",notFoundMsg:"Norādītā frāze netika atrasta.",replace:"Nomainīt",replaceAll:"Aizvietot visu",replaceSuccessMsg:"%1 gadījums(i) aizvietoti",replaceWith:"Nomainīt uz:",title:"Meklēt un aizvietot"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/mk.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/mk.js new file mode 100644 index 0000000..8c41cfc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/mk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","mk",{find:"Find",findOptions:"Find Options",findWhat:"Find what:",matchCase:"Match case",matchCyclic:"Match cyclic",matchWord:"Match whole word",notFoundMsg:"The specified text was not found.",replace:"Replace",replaceAll:"Replace All",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Replace with:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/mn.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/mn.js new file mode 100644 index 0000000..2849816 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/mn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","mn",{find:"Хайх",findOptions:"Хайх сонголтууд",findWhat:"Хайх үг/үсэг:",matchCase:"Тэнцэх төлөв",matchCyclic:"Match cyclic",matchWord:"Тэнцэх бүтэн үг",notFoundMsg:"Хайсан бичвэрийг олсонгүй.",replace:"Орлуулах",replaceAll:"Бүгдийг нь солих",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Солих үг:",title:"Хайж орлуулах"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ms.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ms.js new file mode 100644 index 0000000..75f9603 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ms.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ms",{find:"Cari",findOptions:"Find Options",findWhat:"Perkataan yang dicari:",matchCase:"Padanan case huruf",matchCyclic:"Match cyclic",matchWord:"Padana Keseluruhan perkataan",notFoundMsg:"Text yang dicari tidak dijumpai.",replace:"Ganti",replaceAll:"Ganti semua",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Diganti dengan:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/nb.js new file mode 100644 index 0000000..6779f49 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","nb",{find:"Søk",findOptions:"Søkealternativer",findWhat:"Søk etter:",matchCase:"Skill mellom store og små bokstaver",matchCyclic:"Søk i hele dokumentet",matchWord:"Bare hele ord",notFoundMsg:"Fant ikke søketeksten.",replace:"Erstatt",replaceAll:"Erstatt alle",replaceSuccessMsg:"%1 tilfelle(r) erstattet.",replaceWith:"Erstatt med:",title:"Søk og erstatt"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/nl.js new file mode 100644 index 0000000..156a9da --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","nl",{find:"Zoeken",findOptions:"Zoekopties",findWhat:"Zoeken naar:",matchCase:"Hoofdlettergevoelig",matchCyclic:"Doorlopend zoeken",matchWord:"Hele woord moet voorkomen",notFoundMsg:"De opgegeven tekst is niet gevonden.",replace:"Vervangen",replaceAll:"Alles vervangen",replaceSuccessMsg:"%1 resultaten vervangen.",replaceWith:"Vervangen met:",title:"Zoeken en vervangen"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/no.js new file mode 100644 index 0000000..e098a7c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/no.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","no",{find:"Søk",findOptions:"Søkealternativer",findWhat:"Søk etter:",matchCase:"Skill mellom store og små bokstaver",matchCyclic:"Søk i hele dokumentet",matchWord:"Bare hele ord",notFoundMsg:"Fant ikke søketeksten.",replace:"Erstatt",replaceAll:"Erstatt alle",replaceSuccessMsg:"%1 tilfelle(r) erstattet.",replaceWith:"Erstatt med:",title:"Søk og erstatt"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/pl.js new file mode 100644 index 0000000..1144fd8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","pl",{find:"Znajdź",findOptions:"Opcje wyszukiwania",findWhat:"Znajdź:",matchCase:"Uwzględnij wielkość liter",matchCyclic:"Cykliczne dopasowanie",matchWord:"Całe słowa",notFoundMsg:"Nie znaleziono szukanego hasła.",replace:"Zamień",replaceAll:"Zamień wszystko",replaceSuccessMsg:"%1 wystąpień zastąpionych.",replaceWith:"Zastąp przez:",title:"Znajdź i zamień"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/pt-br.js new file mode 100644 index 0000000..b9e438c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/pt-br.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","pt-br",{find:"Localizar",findOptions:"Opções",findWhat:"Procurar por:",matchCase:"Coincidir Maiúsculas/Minúsculas",matchCyclic:"Coincidir cíclico",matchWord:"Coincidir a palavra inteira",notFoundMsg:"O texto especificado não foi encontrado.",replace:"Substituir",replaceAll:"Substituir Tudo",replaceSuccessMsg:"%1 ocorrência(s) substituída(s).",replaceWith:"Substituir por:",title:"Localizar e Substituir"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/pt.js new file mode 100644 index 0000000..b1f40f0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/pt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","pt",{find:"Procurar",findOptions:"Find Options",findWhat:"Texto a procurar:",matchCase:"Maiúsculas/Minúsculas",matchCyclic:"Match cyclic",matchWord:"Coincidir com toda a palavra",notFoundMsg:"O texto especificado não foi encontrado.",replace:"Substituir",replaceAll:"Substituir Tudo",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Substituir por:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ro.js new file mode 100644 index 0000000..7ec8b9d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ro.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ro",{find:"Găseşte",findOptions:"Find Options",findWhat:"Găseşte:",matchCase:"Deosebeşte majuscule de minuscule (Match case)",matchCyclic:"Potrivește ciclic",matchWord:"Doar cuvintele întregi",notFoundMsg:"Textul specificat nu a fost găsit.",replace:"Înlocuieşte",replaceAll:"Înlocuieşte tot",replaceSuccessMsg:"%1 căutări înlocuite.",replaceWith:"Înlocuieşte cu:",title:"Găseşte şi înlocuieşte"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ru.js new file mode 100644 index 0000000..b611c27 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ru",{find:"Найти",findOptions:"Опции поиска",findWhat:"Найти:",matchCase:"Учитывать регистр",matchCyclic:"По всему тексту",matchWord:"Только слово целиком",notFoundMsg:"Искомый текст не найден.",replace:"Заменить",replaceAll:"Заменить всё",replaceSuccessMsg:"Успешно заменено %1 раз(а).",replaceWith:"Заменить на:",title:"Поиск и замена"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/si.js new file mode 100644 index 0000000..1e1d145 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/si.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","si",{find:"Find",findOptions:"Find Options",findWhat:"Find what:",matchCase:"Match case",matchCyclic:"Match cyclic",matchWord:"Match whole word",notFoundMsg:"The specified text was not found.",replace:"හිලව් කිරීම",replaceAll:"සියල්ලම හිලව් කරන්න",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Replace with:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sk.js new file mode 100644 index 0000000..11821e7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","sk",{find:"Hľadať",findOptions:"Nájsť možnosti",findWhat:"Čo hľadať:",matchCase:"Rozlišovať malé a veľké písmená",matchCyclic:"Cykliť zhodu",matchWord:"Len celé slová",notFoundMsg:"Hľadaný text nebol nájdený.",replace:"Nahradiť",replaceAll:"Nahradiť všetko",replaceSuccessMsg:"%1 výskyt(ov) nahradených.",replaceWith:"Čím nahradiť:",title:"Nájsť a nahradiť"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sl.js new file mode 100644 index 0000000..32dea7e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","sl",{find:"Najdi",findOptions:"Find Options",findWhat:"Najdi:",matchCase:"Razlikuj velike in male črke",matchCyclic:"Primerjaj znake v cirilici",matchWord:"Samo cele besede",notFoundMsg:"Navedeno besedilo ni bilo najdeno.",replace:"Zamenjaj",replaceAll:"Zamenjaj vse",replaceSuccessMsg:"%1 pojavitev je bilo zamenjano.",replaceWith:"Zamenjaj z:",title:"Najdi in zamenjaj"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sq.js new file mode 100644 index 0000000..ae034f6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sq.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","sq",{find:"Gjej",findOptions:"Gjejë Alternativat",findWhat:"Gjej çka:",matchCase:"Rasti i përputhjes",matchCyclic:"Përputh ciklikun",matchWord:"Përputh fjalën e tërë",notFoundMsg:"Teksti i caktuar nuk mundej të gjendet.",replace:"Zëvendëso",replaceAll:"Zëvendëso të gjitha",replaceSuccessMsg:"%1 rast(e) u zëvendësua(n).",replaceWith:"Zëvendëso me:",title:"Gjej dhe Zëvendëso"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sr-latn.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sr-latn.js new file mode 100644 index 0000000..40a4006 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sr-latn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","sr-latn",{find:"Pretraga",findOptions:"Find Options",findWhat:"Pronadi:",matchCase:"Razlikuj mala i velika slova",matchCyclic:"Match cyclic",matchWord:"Uporedi cele reci",notFoundMsg:"Traženi tekst nije pronađen.",replace:"Zamena",replaceAll:"Zameni sve",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Zameni sa:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sr.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sr.js new file mode 100644 index 0000000..57ca629 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","sr",{find:"Претрага",findOptions:"Find Options",findWhat:"Пронађи:",matchCase:"Разликуј велика и мала слова",matchCyclic:"Match cyclic",matchWord:"Упореди целе речи",notFoundMsg:"Тражени текст није пронађен.",replace:"Замена",replaceAll:"Замени све",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"Замени са:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sv.js new file mode 100644 index 0000000..f86c7d2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/sv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","sv",{find:"Sök",findOptions:"Sökalternativ",findWhat:"Sök efter:",matchCase:"Skiftläge",matchCyclic:"Matcha cykliska",matchWord:"Inkludera hela ord",notFoundMsg:"Angiven text kunde ej hittas.",replace:"Ersätt",replaceAll:"Ersätt alla",replaceSuccessMsg:"%1 förekomst(er) ersatta.",replaceWith:"Ersätt med:",title:"Sök och ersätt"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/th.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/th.js new file mode 100644 index 0000000..877ab90 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/th.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","th",{find:"ค้นหา",findOptions:"Find Options",findWhat:"ค้นหาคำว่า:",matchCase:"ตัวโหญ่-เล็ก ต้องตรงกัน",matchCyclic:"Match cyclic",matchWord:"ต้องตรงกันทุกคำ",notFoundMsg:"ไม่พบคำที่ค้นหา.",replace:"ค้นหาและแทนที่",replaceAll:"แทนที่ทั้งหมดที่พบ",replaceSuccessMsg:"%1 occurrence(s) replaced.",replaceWith:"แทนที่ด้วย:",title:"Find and Replace"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/tr.js new file mode 100644 index 0000000..a0fc4f0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","tr",{find:"Bul",findOptions:"Seçenekleri Bul",findWhat:"Aranan:",matchCase:"Büyük/küçük harf duyarlı",matchCyclic:"Eşleşen döngü",matchWord:"Kelimenin tamamı uysun",notFoundMsg:"Belirtilen yazı bulunamadı.",replace:"Değiştir",replaceAll:"Tümünü Değiştir",replaceSuccessMsg:"%1 bulunanlardan değiştirildi.",replaceWith:"Bununla değiştir:",title:"Bul ve Değiştir"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/tt.js new file mode 100644 index 0000000..90a6691 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/tt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","tt",{find:"Эзләү",findOptions:"Эзләү көйләүләре",findWhat:"Нәрсә эзләргә:",matchCase:"Баш һәм юл хәрефләрен исәпкә алу",matchCyclic:"Кабатлап эзләргә",matchWord:"Сүзләрне тулысынча гына эзләү",notFoundMsg:"Эзләнгән текст табылмады.",replace:"Алмаштыру",replaceAll:"Барысын да алмаштыру",replaceSuccessMsg:"%1 урында(ларда) алмаштырылган.",replaceWith:"Нәрсәгә алмаштыру:",title:"Эзләп табу һәм алмаштыру"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ug.js new file mode 100644 index 0000000..9a3e754 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/ug.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","ug",{find:"ئىزدە",findOptions:"ئىزدەش تاللانمىسى",findWhat:"ئىزدە:",matchCase:"چوڭ كىچىك ھەرپنى پەرقلەندۈر",matchCyclic:"ئايلانما ماسلىشىش",matchWord:"پۈتۈن سۆز ماسلىشىش",notFoundMsg:"بەلگىلەنگەن تېكىستنى تاپالمىدى",replace:"ئالماشتۇر",replaceAll:"ھەممىنى ئالماشتۇر",replaceSuccessMsg:"جەمئى %1 جايدىكى ئالماشتۇرۇش تاماملاندى",replaceWith:"ئالماشتۇر:",title:"ئىزدەپ ئالماشتۇر"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/uk.js new file mode 100644 index 0000000..12bf2eb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/uk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","uk",{find:"Пошук",findOptions:"Параметри Пошуку",findWhat:"Шукати:",matchCase:"Враховувати регістр",matchCyclic:"Циклічна заміна",matchWord:"Збіг цілих слів",notFoundMsg:"Вказаний текст не знайдено.",replace:"Заміна",replaceAll:"Замінити все",replaceSuccessMsg:"%1 співпадінь(ня) замінено.",replaceWith:"Замінити на:",title:"Знайти і замінити"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/vi.js new file mode 100644 index 0000000..07936d9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/vi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","vi",{find:"Tìm kiếm",findOptions:"Tìm tùy chọn",findWhat:"Tìm chuỗi:",matchCase:"Phân biệt chữ hoa/thường",matchCyclic:"Giống một phần",matchWord:"Giống toàn bộ từ",notFoundMsg:"Không tìm thấy chuỗi cần tìm.",replace:"Thay thế",replaceAll:"Thay thế tất cả",replaceSuccessMsg:"%1 vị trí đã được thay thế.",replaceWith:"Thay bằng:",title:"Tìm kiếm và thay thế"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/zh-cn.js new file mode 100644 index 0000000..746626a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","zh-cn",{find:"查找",findOptions:"查找选项",findWhat:"查找:",matchCase:"区分大小写",matchCyclic:"循环匹配",matchWord:"全字匹配",notFoundMsg:"指定的文本没有找到。",replace:"替换",replaceAll:"全部替换",replaceSuccessMsg:"共完成 %1 处替换。",replaceWith:"替换:",title:"查找和替换"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/zh.js new file mode 100644 index 0000000..4d6656a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("find","zh",{find:"尋找",findOptions:"尋找選項",findWhat:"尋找目標:",matchCase:"大小寫須相符",matchCyclic:"循環搜尋",matchWord:"全字拼寫須相符",notFoundMsg:"找不到指定的文字。",replace:"取代",replaceAll:"全部取代",replaceSuccessMsg:"已取代 %1 個指定項目。",replaceWith:"取代成:",title:"尋找及取代"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/find/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/find/plugin.js new file mode 100644 index 0000000..0f1e4ac --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/find/plugin.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("find",{requires:"dialog",lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",icons:"find,find-rtl,replace",hidpi:!0,init:function(a){var b=a.addCommand("find",new CKEDITOR.dialogCommand("find"));b.canUndo=!1;b.readOnly=1;a.addCommand("replace",new CKEDITOR.dialogCommand("replace")).canUndo=!1;a.ui.addButton&& +(a.ui.addButton("Find",{label:a.lang.find.find,command:"find",toolbar:"find,10"}),a.ui.addButton("Replace",{label:a.lang.find.replace,command:"replace",toolbar:"find,20"}));CKEDITOR.dialog.add("find",this.path+"dialogs/find.js");CKEDITOR.dialog.add("replace",this.path+"dialogs/find.js")}});CKEDITOR.config.find_highlight={element:"span",styles:{"background-color":"#004",color:"#fff"}}; \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/dialogs/flash.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/dialogs/flash.js new file mode 100644 index 0000000..7fe808c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/dialogs/flash.js @@ -0,0 +1,24 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function b(a,b,c){var k=n[this.id];if(k)for(var f=this instanceof CKEDITOR.ui.dialog.checkbox,e=0;e<k.length;e++){var d=k[e];switch(d.type){case g:if(!a)continue;if(null!==a.getAttribute(d.name)){a=a.getAttribute(d.name);f?this.setValue("true"==a.toLowerCase()):this.setValue(a);return}f&&this.setValue(!!d["default"]);break;case o:if(!a)continue;if(d.name in c){a=c[d.name];f?this.setValue("true"==a.toLowerCase()):this.setValue(a);return}f&&this.setValue(!!d["default"]);break;case i:if(!b)continue; +if(b.getAttribute(d.name)){a=b.getAttribute(d.name);f?this.setValue("true"==a.toLowerCase()):this.setValue(a);return}f&&this.setValue(!!d["default"])}}}function c(a,b,c){var k=n[this.id];if(k)for(var f=""===this.getValue(),e=this instanceof CKEDITOR.ui.dialog.checkbox,d=0;d<k.length;d++){var h=k[d];switch(h.type){case g:if(!a||"data"==h.name&&b&&!a.hasAttribute("data"))continue;var l=this.getValue();f||e&&l===h["default"]?a.removeAttribute(h.name):a.setAttribute(h.name,l);break;case o:if(!a)continue; +l=this.getValue();if(f||e&&l===h["default"])h.name in c&&c[h.name].remove();else if(h.name in c)c[h.name].setAttribute("value",l);else{var p=CKEDITOR.dom.element.createFromHtml("<cke:param></cke:param>",a.getDocument());p.setAttributes({name:h.name,value:l});1>a.getChildCount()?p.appendTo(a):p.insertBefore(a.getFirst())}break;case i:if(!b)continue;l=this.getValue();f||e&&l===h["default"]?b.removeAttribute(h.name):b.setAttribute(h.name,l)}}}for(var g=1,o=2,i=4,n={id:[{type:g,name:"id"}],classid:[{type:g, +name:"classid"}],codebase:[{type:g,name:"codebase"}],pluginspage:[{type:i,name:"pluginspage"}],src:[{type:o,name:"movie"},{type:i,name:"src"},{type:g,name:"data"}],name:[{type:i,name:"name"}],align:[{type:g,name:"align"}],"class":[{type:g,name:"class"},{type:i,name:"class"}],width:[{type:g,name:"width"},{type:i,name:"width"}],height:[{type:g,name:"height"},{type:i,name:"height"}],hSpace:[{type:g,name:"hSpace"},{type:i,name:"hSpace"}],vSpace:[{type:g,name:"vSpace"},{type:i,name:"vSpace"}],style:[{type:g, +name:"style"},{type:i,name:"style"}],type:[{type:i,name:"type"}]},m="play loop menu quality scale salign wmode bgcolor base flashvars allowScriptAccess allowFullScreen".split(" "),j=0;j<m.length;j++)n[m[j]]=[{type:i,name:m[j]},{type:o,name:m[j]}];m=["play","loop","menu"];for(j=0;j<m.length;j++)n[m[j]][0]["default"]=n[m[j]][1]["default"]=!0;CKEDITOR.dialog.add("flash",function(a){var g=!a.config.flashEmbedTagOnly,i=a.config.flashAddEmbedTag||a.config.flashEmbedTagOnly,k,f="<div>"+CKEDITOR.tools.htmlEncode(a.lang.common.preview)+ +'<br><div id="cke_FlashPreviewLoader'+CKEDITOR.tools.getNextNumber()+'" style="display:none"><div class="loading"> </div></div><div id="cke_FlashPreviewBox'+CKEDITOR.tools.getNextNumber()+'" class="FlashPreviewBox"></div></div>';return{title:a.lang.flash.title,minWidth:420,minHeight:310,onShow:function(){this.fakeImage=this.objectNode=this.embedNode=null;k=new CKEDITOR.dom.element("embed",a.document);var e=this.getSelectedElement();if(e&&e.data("cke-real-element-type")&&"flash"==e.data("cke-real-element-type")){this.fakeImage= +e;var d=a.restoreRealElement(e),h=null,b=null,c={};if("cke:object"==d.getName()){h=d;d=h.getElementsByTag("embed","cke");0<d.count()&&(b=d.getItem(0));for(var d=h.getElementsByTag("param","cke"),g=0,i=d.count();g<i;g++){var f=d.getItem(g),j=f.getAttribute("name"),f=f.getAttribute("value");c[j]=f}}else"cke:embed"==d.getName()&&(b=d);this.objectNode=h;this.embedNode=b;this.setupContent(h,b,c,e)}},onOk:function(){var e=null,d=null,b=null;if(this.fakeImage)e=this.objectNode,d=this.embedNode;else if(g&& +(e=CKEDITOR.dom.element.createFromHtml("<cke:object></cke:object>",a.document),e.setAttributes({classid:"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000",codebase:"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"})),i)d=CKEDITOR.dom.element.createFromHtml("<cke:embed></cke:embed>",a.document),d.setAttributes({type:"application/x-shockwave-flash",pluginspage:"http://www.macromedia.com/go/getflashplayer"}),e&&d.appendTo(e);if(e)for(var b={},c=e.getElementsByTag("param", +"cke"),f=0,j=c.count();f<j;f++)b[c.getItem(f).getAttribute("name")]=c.getItem(f);c={};f={};this.commitContent(e,d,b,c,f);e=a.createFakeElement(e||d,"cke_flash","flash",!0);e.setAttributes(f);e.setStyles(c);this.fakeImage?(e.replace(this.fakeImage),a.getSelection().selectElement(e)):a.insertElement(e)},onHide:function(){this.preview&&this.preview.setHtml("")},contents:[{id:"info",label:a.lang.common.generalTab,accessKey:"I",elements:[{type:"vbox",padding:0,children:[{type:"hbox",widths:["280px","110px"], +align:"right",children:[{id:"src",type:"text",label:a.lang.common.url,required:!0,validate:CKEDITOR.dialog.validate.notEmpty(a.lang.flash.validateSrc),setup:b,commit:c,onLoad:function(){var a=this.getDialog(),b=function(b){k.setAttribute("src",b);a.preview.setHtml('<embed height="100%" width="100%" src="'+CKEDITOR.tools.htmlEncode(k.getAttribute("src"))+'" type="application/x-shockwave-flash"></embed>')};a.preview=a.getContentElement("info","preview").getElement().getChild(3);this.on("change",function(a){a.data&& +a.data.value&&b(a.data.value)});this.getInputElement().on("change",function(){b(this.getValue())},this)}},{type:"button",id:"browse",filebrowser:"info:src",hidden:!0,style:"display:inline-block;margin-top:14px;",label:a.lang.common.browseServer}]}]},{type:"hbox",widths:["25%","25%","25%","25%","25%"],children:[{type:"text",id:"width",requiredContent:"embed[width]",style:"width:95px",label:a.lang.common.width,validate:CKEDITOR.dialog.validate.htmlLength(a.lang.common.invalidHtmlLength.replace("%1", +a.lang.common.width)),setup:b,commit:c},{type:"text",id:"height",requiredContent:"embed[height]",style:"width:95px",label:a.lang.common.height,validate:CKEDITOR.dialog.validate.htmlLength(a.lang.common.invalidHtmlLength.replace("%1",a.lang.common.height)),setup:b,commit:c},{type:"text",id:"hSpace",requiredContent:"embed[hspace]",style:"width:95px",label:a.lang.flash.hSpace,validate:CKEDITOR.dialog.validate.integer(a.lang.flash.validateHSpace),setup:b,commit:c},{type:"text",id:"vSpace",requiredContent:"embed[vspace]", +style:"width:95px",label:a.lang.flash.vSpace,validate:CKEDITOR.dialog.validate.integer(a.lang.flash.validateVSpace),setup:b,commit:c}]},{type:"vbox",children:[{type:"html",id:"preview",style:"width:95%;",html:f}]}]},{id:"Upload",hidden:!0,filebrowser:"uploadButton",label:a.lang.common.upload,elements:[{type:"file",id:"upload",label:a.lang.common.upload,size:38},{type:"fileButton",id:"uploadButton",label:a.lang.common.uploadSubmit,filebrowser:"info:src","for":["Upload","upload"]}]},{id:"properties", +label:a.lang.flash.propertiesTab,elements:[{type:"hbox",widths:["50%","50%"],children:[{id:"scale",type:"select",requiredContent:"embed[scale]",label:a.lang.flash.scale,"default":"",style:"width : 100%;",items:[[a.lang.common.notSet,""],[a.lang.flash.scaleAll,"showall"],[a.lang.flash.scaleNoBorder,"noborder"],[a.lang.flash.scaleFit,"exactfit"]],setup:b,commit:c},{id:"allowScriptAccess",type:"select",requiredContent:"embed[allowscriptaccess]",label:a.lang.flash.access,"default":"",style:"width : 100%;", +items:[[a.lang.common.notSet,""],[a.lang.flash.accessAlways,"always"],[a.lang.flash.accessSameDomain,"samedomain"],[a.lang.flash.accessNever,"never"]],setup:b,commit:c}]},{type:"hbox",widths:["50%","50%"],children:[{id:"wmode",type:"select",requiredContent:"embed[wmode]",label:a.lang.flash.windowMode,"default":"",style:"width : 100%;",items:[[a.lang.common.notSet,""],[a.lang.flash.windowModeWindow,"window"],[a.lang.flash.windowModeOpaque,"opaque"],[a.lang.flash.windowModeTransparent,"transparent"]], +setup:b,commit:c},{id:"quality",type:"select",requiredContent:"embed[quality]",label:a.lang.flash.quality,"default":"high",style:"width : 100%;",items:[[a.lang.common.notSet,""],[a.lang.flash.qualityBest,"best"],[a.lang.flash.qualityHigh,"high"],[a.lang.flash.qualityAutoHigh,"autohigh"],[a.lang.flash.qualityMedium,"medium"],[a.lang.flash.qualityAutoLow,"autolow"],[a.lang.flash.qualityLow,"low"]],setup:b,commit:c}]},{type:"hbox",widths:["50%","50%"],children:[{id:"align",type:"select",requiredContent:"object[align]", +label:a.lang.common.align,"default":"",style:"width : 100%;",items:[[a.lang.common.notSet,""],[a.lang.common.alignLeft,"left"],[a.lang.flash.alignAbsBottom,"absBottom"],[a.lang.flash.alignAbsMiddle,"absMiddle"],[a.lang.flash.alignBaseline,"baseline"],[a.lang.common.alignBottom,"bottom"],[a.lang.common.alignMiddle,"middle"],[a.lang.common.alignRight,"right"],[a.lang.flash.alignTextTop,"textTop"],[a.lang.common.alignTop,"top"]],setup:b,commit:function(a,b,f,g,i){var j=this.getValue();c.apply(this,arguments); +j&&(i.align=j)}},{type:"html",html:"<div></div>"}]},{type:"fieldset",label:CKEDITOR.tools.htmlEncode(a.lang.flash.flashvars),children:[{type:"vbox",padding:0,children:[{type:"checkbox",id:"menu",label:a.lang.flash.chkMenu,"default":!0,setup:b,commit:c},{type:"checkbox",id:"play",label:a.lang.flash.chkPlay,"default":!0,setup:b,commit:c},{type:"checkbox",id:"loop",label:a.lang.flash.chkLoop,"default":!0,setup:b,commit:c},{type:"checkbox",id:"allowFullScreen",label:a.lang.flash.chkFull,"default":!0, +setup:b,commit:c}]}]}]},{id:"advanced",label:a.lang.common.advancedTab,elements:[{type:"hbox",children:[{type:"text",id:"id",requiredContent:"object[id]",label:a.lang.common.id,setup:b,commit:c}]},{type:"hbox",widths:["45%","55%"],children:[{type:"text",id:"bgcolor",requiredContent:"embed[bgcolor]",label:a.lang.flash.bgcolor,setup:b,commit:c},{type:"text",id:"class",requiredContent:"embed(cke-xyz)",label:a.lang.common.cssClass,setup:b,commit:c}]},{type:"text",id:"style",requiredContent:"embed{cke-xyz}", +validate:CKEDITOR.dialog.validate.inlineStyle(a.lang.common.invalidInlineStyle),label:a.lang.common.cssStyle,setup:b,commit:c}]}]}})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/icons/flash.png b/zup-painel/assets/scripts/ckeditor/plugins/flash/icons/flash.png new file mode 100644 index 0000000..df7b1c6 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/flash/icons/flash.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/icons/hidpi/flash.png b/zup-painel/assets/scripts/ckeditor/plugins/flash/icons/hidpi/flash.png new file mode 100644 index 0000000..7ad0e38 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/flash/icons/hidpi/flash.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/images/placeholder.png b/zup-painel/assets/scripts/ckeditor/plugins/flash/images/placeholder.png new file mode 100644 index 0000000..0bc6caa Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/flash/images/placeholder.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/af.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/af.js new file mode 100644 index 0000000..9ee64f1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/af.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","af",{access:"Skrip toegang",accessAlways:"Altyd",accessNever:"Nooit",accessSameDomain:"Selfde domeinnaam",alignAbsBottom:"Absoluut-onder",alignAbsMiddle:"Absoluut-middel",alignBaseline:"Basislyn",alignTextTop:"Teks bo",bgcolor:"Agtergrondkleur",chkFull:"Laat volledige skerm toe",chkLoop:"Herhaal",chkMenu:"Flash spyskaart aan",chkPlay:"Speel outomaties",flashvars:"Veranderlikes vir Flash",hSpace:"HSpasie",properties:"Flash eienskappe",propertiesTab:"Eienskappe",quality:"Kwaliteit", +qualityAutoHigh:"Outomaties hoog",qualityAutoLow:"Outomaties laag",qualityBest:"Beste",qualityHigh:"Hoog",qualityLow:"Laag",qualityMedium:"Gemiddeld",scale:"Skaal",scaleAll:"Wys alles",scaleFit:"Presiese pas",scaleNoBorder:"Geen rand",title:"Flash eienskappe",vSpace:"VSpasie",validateHSpace:"HSpasie moet 'n heelgetal wees.",validateSrc:"Voeg die URL in",validateVSpace:"VSpasie moet 'n heelgetal wees.",windowMode:"Venster modus",windowModeOpaque:"Ondeursigtig",windowModeTransparent:"Deursigtig",windowModeWindow:"Venster"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ar.js new file mode 100644 index 0000000..5b89e5b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ar.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","ar",{access:"دخول النص البرمجي",accessAlways:"دائماً",accessNever:"مطلقاً",accessSameDomain:"نفس النطاق",alignAbsBottom:"أسفل النص",alignAbsMiddle:"وسط السطر",alignBaseline:"على السطر",alignTextTop:"أعلى النص",bgcolor:"لون الخلفية",chkFull:"ملء الشاشة",chkLoop:"تكرار",chkMenu:"تمكين قائمة فيلم الفلاش",chkPlay:"تشغيل تلقائي",flashvars:"متغيرات الفلاش",hSpace:"تباعد أفقي",properties:"خصائص الفلاش",propertiesTab:"الخصائص",quality:"جودة",qualityAutoHigh:"عالية تلقائياً", +qualityAutoLow:"منخفضة تلقائياً",qualityBest:"أفضل",qualityHigh:"عالية",qualityLow:"منخفضة",qualityMedium:"متوسطة",scale:"الحجم",scaleAll:"إظهار الكل",scaleFit:"ضبط تام",scaleNoBorder:"بلا حدود",title:"خصائص فيلم الفلاش",vSpace:"تباعد عمودي",validateHSpace:"HSpace يجب أن يكون عدداً.",validateSrc:"فضلاً أدخل عنوان الموقع الذي يشير إليه الرابط",validateVSpace:"VSpace يجب أن يكون عدداً.",windowMode:"وضع النافذة",windowModeOpaque:"غير شفاف",windowModeTransparent:"شفاف",windowModeWindow:"نافذة"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/bg.js new file mode 100644 index 0000000..a60e86c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/bg.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","bg",{access:"Достъп до скрипт",accessAlways:"Винаги",accessNever:"Никога",accessSameDomain:"Същият домейн",alignAbsBottom:"Най-долу",alignAbsMiddle:"Точно по средата",alignBaseline:"Базова линия",alignTextTop:"Върху текста",bgcolor:"Цвят на фона",chkFull:"Включи на цял екран",chkLoop:"Цикъл",chkMenu:"Разрешено Flash меню",chkPlay:"Авто. пускане",flashvars:"Променливи за Флаш",hSpace:"Хоризонтален отстъп",properties:"Настройки за флаш",propertiesTab:"Настройки",quality:"Качество", +qualityAutoHigh:"Авто. високо",qualityAutoLow:"Авто. ниско",qualityBest:"Отлично",qualityHigh:"Високо",qualityLow:"Ниско",qualityMedium:"Средно",scale:"Оразмеряване",scaleAll:"Показва всичко",scaleFit:"Според мястото",scaleNoBorder:"Без рамка",title:"Настройки за флаш",vSpace:"Вертикален отстъп",validateHSpace:"HSpace трябва да е число.",validateSrc:"Уеб адреса не трябва да е празен.",validateVSpace:"VSpace трябва да е число.",windowMode:"Режим на прозореца",windowModeOpaque:"Плътност",windowModeTransparent:"Прозрачност", +windowModeWindow:"Прозорец"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/bn.js new file mode 100644 index 0000000..2eed56b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/bn.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","bn",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs নীচে",alignAbsMiddle:"Abs উপর",alignBaseline:"মূল রেখা",alignTextTop:"টেক্সট উপর",bgcolor:"বেকগ্রাউন্ড রং",chkFull:"Allow Fullscreen",chkLoop:"লূপ",chkMenu:"ফ্ল্যাশ মেনু এনাবল কর",chkPlay:"অটো প্লে",flashvars:"Variables for Flash",hSpace:"হরাইজন্টাল স্পেস",properties:"ফ্লাশ প্রোপার্টি",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"স্কেল",scaleAll:"সব দেখাও",scaleFit:"নিখুঁত ফিট",scaleNoBorder:"কোনো বর্ডার নেই",title:"ফ্ল্যাশ প্রোপার্টি",vSpace:"ভার্টিকেল স্পেস",validateHSpace:"HSpace must be a number.",validateSrc:"অনুগ্রহ করে URL লিংক টাইপ করুন",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/bs.js new file mode 100644 index 0000000..4d5f4b4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/bs.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","bs",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs dole",alignAbsMiddle:"Abs sredina",alignBaseline:"Bazno",alignTextTop:"Vrh teksta",bgcolor:"Boja pozadine",chkFull:"Allow Fullscreen",chkLoop:"Loop",chkMenu:"Enable Flash Menu",chkPlay:"Auto Play",flashvars:"Variables for Flash",hSpace:"HSpace",properties:"Flash Properties",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Scale",scaleAll:"Show all",scaleFit:"Exact Fit",scaleNoBorder:"No Border",title:"Flash Properties",vSpace:"VSpace",validateHSpace:"HSpace must be a number.",validateSrc:"Molimo ukucajte URL link",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ca.js new file mode 100644 index 0000000..c1e1602 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","ca",{access:"Accés a scripts",accessAlways:"Sempre",accessNever:"Mai",accessSameDomain:"El mateix domini",alignAbsBottom:"Abs Bottom",alignAbsMiddle:"Abs Middle",alignBaseline:"Baseline",alignTextTop:"Text Superior",bgcolor:"Color de Fons",chkFull:"Permetre la pantalla completa",chkLoop:"Bucle",chkMenu:"Habilita menú Flash",chkPlay:"Reprodució automàtica",flashvars:"Variables de Flash",hSpace:"Espaiat horitzontal",properties:"Propietats del Flash",propertiesTab:"Propietats", +quality:"Qualitat",qualityAutoHigh:"Alta automàtica",qualityAutoLow:"Baixa automàtica",qualityBest:"La millor",qualityHigh:"Alta",qualityLow:"Baixa",qualityMedium:"Mitjana",scale:"Escala",scaleAll:"Mostra-ho tot",scaleFit:"Mida exacta",scaleNoBorder:"Sense vores",title:"Propietats del Flash",vSpace:"Espaiat vertical",validateHSpace:"L'espaiat horitzontal ha de ser un número.",validateSrc:"La URL no pot estar buida.",validateVSpace:"L'espaiat vertical ha de ser un número.",windowMode:"Mode de la finestra", +windowModeOpaque:"Opaca",windowModeTransparent:"Transparent",windowModeWindow:"Finestra"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/cs.js new file mode 100644 index 0000000..51087ed --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/cs.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","cs",{access:"Přístup ke skriptu",accessAlways:"Vždy",accessNever:"Nikdy",accessSameDomain:"Ve stejné doméně",alignAbsBottom:"Zcela dolů",alignAbsMiddle:"Doprostřed",alignBaseline:"Na účaří",alignTextTop:"Na horní okraj textu",bgcolor:"Barva pozadí",chkFull:"Povolit celoobrazovkový režim",chkLoop:"Opakování",chkMenu:"Nabídka Flash",chkPlay:"Automatické spuštění",flashvars:"Proměnné pro Flash",hSpace:"Horizontální mezera",properties:"Vlastnosti Flashe",propertiesTab:"Vlastnosti", +quality:"Kvalita",qualityAutoHigh:"Vysoká - auto",qualityAutoLow:"Nízká - auto",qualityBest:"Nejlepší",qualityHigh:"Vysoká",qualityLow:"Nejnižší",qualityMedium:"Střední",scale:"Zobrazit",scaleAll:"Zobrazit vše",scaleFit:"Přizpůsobit",scaleNoBorder:"Bez okraje",title:"Vlastnosti Flashe",vSpace:"Vertikální mezera",validateHSpace:"Zadaná horizontální mezera musí být číslo.",validateSrc:"Zadejte prosím URL odkazu",validateVSpace:"Zadaná vertikální mezera musí být číslo.",windowMode:"Režim okna",windowModeOpaque:"Neprůhledné", +windowModeTransparent:"Průhledné",windowModeWindow:"Okno"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/cy.js new file mode 100644 index 0000000..b6ae1ef --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/cy.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","cy",{access:"Mynediad Sgript",accessAlways:"Pob amser",accessNever:"Byth",accessSameDomain:"R'un parth",alignAbsBottom:"Gwaelod Abs",alignAbsMiddle:"Canol Abs",alignBaseline:"Baslinell",alignTextTop:"Testun Top",bgcolor:"Lliw cefndir",chkFull:"Caniatàu Sgrin Llawn",chkLoop:"Lwpio",chkMenu:"Galluogi Dewislen Flash",chkPlay:"AwtoChwarae",flashvars:"Newidynnau ar gyfer Flash",hSpace:"BwlchLl",properties:"Priodweddau Flash",propertiesTab:"Priodweddau",quality:"Ansawdd", +qualityAutoHigh:"Uchel Awto",qualityAutoLow:"Isel Awto",qualityBest:"Gorau",qualityHigh:"Uchel",qualityLow:"Isel",qualityMedium:"Canolig",scale:"Graddfa",scaleAll:"Dangos pob",scaleFit:"Ffit Union",scaleNoBorder:"Dim Ymyl",title:"Priodweddau Flash",vSpace:"BwlchF",validateHSpace:"Rhaid i'r BwlchLl fod yn rhif.",validateSrc:"Ni all yr URL fod yn wag.",validateVSpace:"Rhaid i'r BwlchF fod yn rhif.",windowMode:"Modd ffenestr",windowModeOpaque:"Afloyw",windowModeTransparent:"Tryloyw",windowModeWindow:"Ffenestr"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/da.js new file mode 100644 index 0000000..a55294d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/da.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","da",{access:"Scriptadgang",accessAlways:"Altid",accessNever:"Aldrig",accessSameDomain:"Samme domæne",alignAbsBottom:"Absolut nederst",alignAbsMiddle:"Absolut centreret",alignBaseline:"Grundlinje",alignTextTop:"Toppen af teksten",bgcolor:"Baggrundsfarve",chkFull:"Tillad fuldskærm",chkLoop:"Gentagelse",chkMenu:"Vis Flash-menu",chkPlay:"Automatisk afspilning",flashvars:"Variabler for Flash",hSpace:"Vandret margen",properties:"Egenskaber for Flash",propertiesTab:"Egenskaber", +quality:"Kvalitet",qualityAutoHigh:"Auto høj",qualityAutoLow:"Auto lav",qualityBest:"Bedste",qualityHigh:"Høj",qualityLow:"Lav",qualityMedium:"Medium",scale:"Skalér",scaleAll:"Vis alt",scaleFit:"Tilpas størrelse",scaleNoBorder:"Ingen ramme",title:"Egenskaber for Flash",vSpace:"Lodret margen",validateHSpace:"Vandret margen skal være et tal.",validateSrc:"Indtast hyperlink URL!",validateVSpace:"Lodret margen skal være et tal.",windowMode:"Vinduestilstand",windowModeOpaque:"Gennemsigtig (opaque)",windowModeTransparent:"Transparent", +windowModeWindow:"Vindue"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/de.js new file mode 100644 index 0000000..41d7a17 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/de.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","de",{access:"Skriptzugriff",accessAlways:"Immer",accessNever:"Nie",accessSameDomain:"Gleiche Domain",alignAbsBottom:"Abs Unten",alignAbsMiddle:"Abs Mitte",alignBaseline:"Basislinie",alignTextTop:"Text oben",bgcolor:"Hintergrundfarbe",chkFull:"Vollbildmodus erlauben",chkLoop:"Endlosschleife",chkMenu:"Flash-Menü aktivieren",chkPlay:"Automatisch Abspielen",flashvars:"Variablen für Flash",hSpace:"Horizontal-Abstand",properties:"Flash-Eigenschaften",propertiesTab:"Eigenschaften", +quality:"Qualität",qualityAutoHigh:"Auto Hoch",qualityAutoLow:"Auto Niedrig",qualityBest:"Beste",qualityHigh:"Hoch",qualityLow:"Niedrig",qualityMedium:"Mittel",scale:"Skalierung",scaleAll:"Alles anzeigen",scaleFit:"Passgenau",scaleNoBorder:"Ohne Rand",title:"Flash-Eigenschaften",vSpace:"Vertikal-Abstand",validateHSpace:"HSpace muss eine Zahl sein.",validateSrc:"URL darf nicht leer sein.",validateVSpace:"VSpace muss eine Zahl sein.",windowMode:"Fenstermodus",windowModeOpaque:"Deckend",windowModeTransparent:"Transparent", +windowModeWindow:"Fenster"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/el.js new file mode 100644 index 0000000..4904d1b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/el.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","el",{access:"Πρόσβαση Script",accessAlways:"Πάντα",accessNever:"Ποτέ",accessSameDomain:"Ίδιο όνομα τομέα",alignAbsBottom:"Απόλυτα Κάτω",alignAbsMiddle:"Απόλυτα στη Μέση",alignBaseline:"Γραμμή Βάσης",alignTextTop:"Κορυφή Κειμένου",bgcolor:"Χρώμα Υποβάθρου",chkFull:"Να Επιτρέπεται η Προβολή σε Πλήρη Οθόνη",chkLoop:"Επανάληψη",chkMenu:"Ενεργοποίηση Flash Menu",chkPlay:"Αυτόματη Εκτέλεση",flashvars:"Μεταβλητές για Flash",hSpace:"Οριζόντιο Διάστημα",properties:"Ιδιότητες Flash", +propertiesTab:"Ιδιότητες",quality:"Ποιότητα",qualityAutoHigh:"Αυτόματη Υψηλή",qualityAutoLow:"Αυτόματη Χαμηλή",qualityBest:"Καλύτερη",qualityHigh:"Υψηλή",qualityLow:"Χαμηλή",qualityMedium:"Μεσαία",scale:"Μεγέθυνση",scaleAll:"Εμφάνιση όλων",scaleFit:"Ακριβές Μέγεθος",scaleNoBorder:"Χωρίς Περίγραμμα",title:"Ιδιότητες Flash",vSpace:"Κάθετο Διάστημα",validateHSpace:"Το HSpace πρέπει να είναι αριθμός.",validateSrc:"Εισάγετε την τοποθεσία (URL) του υπερσυνδέσμου (Link)",validateVSpace:"Το VSpace πρέπει να είναι αριθμός.", +windowMode:"Τρόπος λειτουργίας παραθύρου",windowModeOpaque:"Συμπαγές",windowModeTransparent:"Διάφανο",windowModeWindow:"Παράθυρο"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en-au.js new file mode 100644 index 0000000..e066c74 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en-au.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","en-au",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs Bottom",alignAbsMiddle:"Abs Middle",alignBaseline:"Baseline",alignTextTop:"Text Top",bgcolor:"Background colour",chkFull:"Allow Fullscreen",chkLoop:"Loop",chkMenu:"Enable Flash Menu",chkPlay:"Auto Play",flashvars:"Variables for Flash",hSpace:"HSpace",properties:"Flash Properties",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Scale",scaleAll:"Show all",scaleFit:"Exact Fit",scaleNoBorder:"No Border",title:"Flash Properties",vSpace:"VSpace",validateHSpace:"HSpace must be a number.",validateSrc:"URL must not be empty.",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en-ca.js new file mode 100644 index 0000000..9c6fdc4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en-ca.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","en-ca",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs Bottom",alignAbsMiddle:"Abs Middle",alignBaseline:"Baseline",alignTextTop:"Text Top",bgcolor:"Background colour",chkFull:"Allow Fullscreen",chkLoop:"Loop",chkMenu:"Enable Flash Menu",chkPlay:"Auto Play",flashvars:"Variables for Flash",hSpace:"HSpace",properties:"Flash Properties",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Scale",scaleAll:"Show all",scaleFit:"Exact Fit",scaleNoBorder:"No Border",title:"Flash Properties",vSpace:"VSpace",validateHSpace:"HSpace must be a number.",validateSrc:"URL must not be empty.",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en-gb.js new file mode 100644 index 0000000..ccbc28a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en-gb.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","en-gb",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs Bottom",alignAbsMiddle:"Abs Middle",alignBaseline:"Baseline",alignTextTop:"Text Top",bgcolor:"Background colour",chkFull:"Allow Fullscreen",chkLoop:"Loop",chkMenu:"Enable Flash Menu",chkPlay:"Auto Play",flashvars:"Variables for Flash",hSpace:"HSpace",properties:"Flash Properties",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Scale",scaleAll:"Show all",scaleFit:"Exact Fit",scaleNoBorder:"No Border",title:"Flash Properties",vSpace:"VSpace",validateHSpace:"HSpace must be a number.",validateSrc:"URL must not be empty.",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en.js new file mode 100644 index 0000000..1338031 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/en.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","en",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs Bottom",alignAbsMiddle:"Abs Middle",alignBaseline:"Baseline",alignTextTop:"Text Top",bgcolor:"Background color",chkFull:"Allow Fullscreen",chkLoop:"Loop",chkMenu:"Enable Flash Menu",chkPlay:"Auto Play",flashvars:"Variables for Flash",hSpace:"HSpace",properties:"Flash Properties",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Scale",scaleAll:"Show all",scaleFit:"Exact Fit",scaleNoBorder:"No Border",title:"Flash Properties",vSpace:"VSpace",validateHSpace:"HSpace must be a number.",validateSrc:"URL must not be empty.",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/eo.js new file mode 100644 index 0000000..30218bc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/eo.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","eo",{access:"Atingi skriptojn",accessAlways:"Ĉiam",accessNever:"Neniam",accessSameDomain:"Sama domajno",alignAbsBottom:"Absoluta Malsupro",alignAbsMiddle:"Absoluta Centro",alignBaseline:"TekstoMalsupro",alignTextTop:"TekstoSupro",bgcolor:"Fona Koloro",chkFull:"Permesi tutekranon",chkLoop:"Iteracio",chkMenu:"Ebligi flaŝmenuon",chkPlay:"Aŭtomata legado",flashvars:"Variabloj por Flaŝo",hSpace:"Horizontala Spaco",properties:"Flaŝatributoj",propertiesTab:"Atributoj",quality:"Kvalito", +qualityAutoHigh:"Aŭtomate alta",qualityAutoLow:"Aŭtomate malalta",qualityBest:"Plej bona",qualityHigh:"Alta",qualityLow:"Malalta",qualityMedium:"Meza",scale:"Skalo",scaleAll:"Montri ĉion",scaleFit:"Origina grando",scaleNoBorder:"Neniu bordero",title:"Flaŝatributoj",vSpace:"Vertikala Spaco",validateHSpace:"Horizontala Spaco devas esti nombro.",validateSrc:"Bonvolu entajpi la retadreson (URL)",validateVSpace:"Vertikala Spaco devas esti nombro.",windowMode:"Fenestra reĝimo",windowModeOpaque:"Opaka", +windowModeTransparent:"Travidebla",windowModeWindow:"Fenestro"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/es.js new file mode 100644 index 0000000..296239e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/es.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","es",{access:"Acceso de scripts",accessAlways:"Siempre",accessNever:"Nunca",accessSameDomain:"Mismo dominio",alignAbsBottom:"Abs inferior",alignAbsMiddle:"Abs centro",alignBaseline:"Línea de base",alignTextTop:"Tope del texto",bgcolor:"Color de Fondo",chkFull:"Permitir pantalla completa",chkLoop:"Repetir",chkMenu:"Activar Menú Flash",chkPlay:"Autoejecución",flashvars:"Opciones",hSpace:"Esp.Horiz",properties:"Propiedades de Flash",propertiesTab:"Propiedades",quality:"Calidad", +qualityAutoHigh:"Auto Alta",qualityAutoLow:"Auto Baja",qualityBest:"La mejor",qualityHigh:"Alta",qualityLow:"Baja",qualityMedium:"Media",scale:"Escala",scaleAll:"Mostrar todo",scaleFit:"Ajustado",scaleNoBorder:"Sin Borde",title:"Propiedades de Flash",vSpace:"Esp.Vert",validateHSpace:"Esp.Horiz debe ser un número.",validateSrc:"Por favor escriba el vínculo URL",validateVSpace:"Esp.Vert debe ser un número.",windowMode:"WindowMode",windowModeOpaque:"Opaco",windowModeTransparent:"Transparente",windowModeWindow:"Ventana"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/et.js new file mode 100644 index 0000000..9ac2b3c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/et.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","et",{access:"Skriptide ligipääs",accessAlways:"Kõigile",accessNever:"Mitte ühelegi",accessSameDomain:"Samalt domeenilt",alignAbsBottom:"Abs alla",alignAbsMiddle:"Abs keskele",alignBaseline:"Baasjoonele",alignTextTop:"Tekstist üles",bgcolor:"Tausta värv",chkFull:"Täisekraan lubatud",chkLoop:"Korduv",chkMenu:"Flashi menüü lubatud",chkPlay:"Automaatne start ",flashvars:"Flashi muutujad",hSpace:"H. vaheruum",properties:"Flashi omadused",propertiesTab:"Omadused",quality:"Kvaliteet", +qualityAutoHigh:"Automaatne kõrge",qualityAutoLow:"Automaatne madal",qualityBest:"Parim",qualityHigh:"Kõrge",qualityLow:"Madal",qualityMedium:"Keskmine",scale:"Mastaap",scaleAll:"Näidatakse kõike",scaleFit:"Täpne sobivus",scaleNoBorder:"Äärist ei ole",title:"Flashi omadused",vSpace:"V. vaheruum",validateHSpace:"H. vaheruum peab olema number.",validateSrc:"Palun kirjuta lingi URL",validateVSpace:"V. vaheruum peab olema number.",windowMode:"Akna režiim",windowModeOpaque:"Läbipaistmatu",windowModeTransparent:"Läbipaistev", +windowModeWindow:"Aken"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/eu.js new file mode 100644 index 0000000..5cf1202 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/eu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","eu",{access:"Scriptak baimendu",accessAlways:"Beti",accessNever:"Inoiz ere ez",accessSameDomain:"Domeinu berdinekoak",alignAbsBottom:"Abs Behean",alignAbsMiddle:"Abs Erdian",alignBaseline:"Oinan",alignTextTop:"Testua Goian",bgcolor:"Atzeko kolorea",chkFull:"Onartu Pantaila osoa",chkLoop:"Begizta",chkMenu:"Flasharen Menua Gaitu",chkPlay:"Automatikoki Erreproduzitu",flashvars:"Flash Aldagaiak",hSpace:"HSpace",properties:"Flasharen Ezaugarriak",propertiesTab:"Ezaugarriak", +quality:"Kalitatea",qualityAutoHigh:"Auto Altua",qualityAutoLow:"Auto Baxua",qualityBest:"Hoberena",qualityHigh:"Altua",qualityLow:"Baxua",qualityMedium:"Ertaina",scale:"Eskalatu",scaleAll:"Dena erakutsi",scaleFit:"Doitu",scaleNoBorder:"Ertzik gabe",title:"Flasharen Ezaugarriak",vSpace:"VSpace",validateHSpace:"HSpace zenbaki bat izan behar da.",validateSrc:"Mesedez URL esteka idatzi",validateVSpace:"VSpace zenbaki bat izan behar da.",windowMode:"Leihoaren modua",windowModeOpaque:"Opakoa",windowModeTransparent:"Gardena", +windowModeWindow:"Leihoa"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fa.js new file mode 100644 index 0000000..ac4a609 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fa.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","fa",{access:"دسترسی به اسکریپت",accessAlways:"همیشه",accessNever:"هرگز",accessSameDomain:"همان دامنه",alignAbsBottom:"پائین مطلق",alignAbsMiddle:"وسط مطلق",alignBaseline:"خط پایه",alignTextTop:"متن بالا",bgcolor:"رنگ پس​زمینه",chkFull:"اجازه تمام صفحه",chkLoop:"اجرای پیاپی",chkMenu:"در دسترس بودن منوی فلش",chkPlay:"آغاز خودکار",flashvars:"مقادیر برای فلش",hSpace:"فاصلهٴ افقی",properties:"ویژگی​های فلش",propertiesTab:"ویژگی​ها",quality:"کیفیت",qualityAutoHigh:"بالا - خودکار", +qualityAutoLow:"پایین - خودکار",qualityBest:"بهترین",qualityHigh:"بالا",qualityLow:"پایین",qualityMedium:"متوسط",scale:"مقیاس",scaleAll:"نمایش همه",scaleFit:"جایگیری کامل",scaleNoBorder:"بدون کران",title:"ویژگی​های فلش",vSpace:"فاصلهٴ عمودی",validateHSpace:"مقدار فاصله گذاری افقی باید یک عدد باشد.",validateSrc:"لطفا URL پیوند را بنویسید",validateVSpace:"مقدار فاصله گذاری عمودی باید یک عدد باشد.",windowMode:"حالت پنجره",windowModeOpaque:"مات",windowModeTransparent:"شفاف",windowModeWindow:"پنجره"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fi.js new file mode 100644 index 0000000..c40fe43 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","fi",{access:"Skriptien pääsy",accessAlways:"Aina",accessNever:"Ei koskaan",accessSameDomain:"Sama verkkotunnus",alignAbsBottom:"Aivan alas",alignAbsMiddle:"Aivan keskelle",alignBaseline:"Alas (teksti)",alignTextTop:"Ylös (teksti)",bgcolor:"Taustaväri",chkFull:"Salli kokoruututila",chkLoop:"Toisto",chkMenu:"Näytä Flash-valikko",chkPlay:"Automaattinen käynnistys",flashvars:"Muuttujat Flash:lle",hSpace:"Vaakatila",properties:"Flash-ominaisuudet",propertiesTab:"Ominaisuudet", +quality:"Laatu",qualityAutoHigh:"Automaattinen korkea",qualityAutoLow:"Automaattinen matala",qualityBest:"Paras",qualityHigh:"Korkea",qualityLow:"Matala",qualityMedium:"Keskitaso",scale:"Levitä",scaleAll:"Näytä kaikki",scaleFit:"Tarkka koko",scaleNoBorder:"Ei rajaa",title:"Flash ominaisuudet",vSpace:"Pystytila",validateHSpace:"Vaakatilan täytyy olla numero.",validateSrc:"Linkille on kirjoitettava URL",validateVSpace:"Pystytilan täytyy olla numero.",windowMode:"Ikkuna tila",windowModeOpaque:"Läpinäkyvyys", +windowModeTransparent:"Läpinäkyvä",windowModeWindow:"Ikkuna"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fo.js new file mode 100644 index 0000000..d02410a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fo.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","fo",{access:"Script atgongd",accessAlways:"Altíð",accessNever:"Ongantíð",accessSameDomain:"Sama navnaøki",alignAbsBottom:"Abs botnur",alignAbsMiddle:"Abs miðja",alignBaseline:"Basislinja",alignTextTop:"Tekst toppur",bgcolor:"Bakgrundslitur",chkFull:"Loyv fullan skerm",chkLoop:"Endurspæl",chkMenu:"Ger Flash skrá virkna",chkPlay:"Avspælingin byrjar sjálv",flashvars:"Variablar fyri Flash",hSpace:"Høgri breddi",properties:"Flash eginleikar",propertiesTab:"Eginleikar", +quality:"Góðska",qualityAutoHigh:"Auto høg",qualityAutoLow:"Auto Lág",qualityBest:"Besta",qualityHigh:"Høg",qualityLow:"Lág",qualityMedium:"Meðal",scale:"Skalering",scaleAll:"Vís alt",scaleFit:"Neyv skalering",scaleNoBorder:"Eingin bordi",title:"Flash eginleikar",vSpace:"Vinstri breddi",validateHSpace:"HSpace má vera eitt tal.",validateSrc:"Vinarliga skriva tilknýti (URL)",validateVSpace:"VSpace má vera eitt tal.",windowMode:"Slag av rúti",windowModeOpaque:"Ikki transparent",windowModeTransparent:"Transparent", +windowModeWindow:"Rútur"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fr-ca.js new file mode 100644 index 0000000..8218f11 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fr-ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","fr-ca",{access:"Accès au script",accessAlways:"Toujours",accessNever:"Jamais",accessSameDomain:"Même domaine",alignAbsBottom:"Bas absolu",alignAbsMiddle:"Milieu absolu",alignBaseline:"Bas du texte",alignTextTop:"Haut du texte",bgcolor:"Couleur de fond",chkFull:"Permettre le plein-écran",chkLoop:"Boucle",chkMenu:"Activer le menu Flash",chkPlay:"Lecture automatique",flashvars:"Variables pour Flash",hSpace:"Espacement horizontal",properties:"Propriétés de l'animation Flash", +propertiesTab:"Propriétés",quality:"Qualité",qualityAutoHigh:"Haute auto",qualityAutoLow:"Basse auto",qualityBest:"Meilleur",qualityHigh:"Haute",qualityLow:"Basse",qualityMedium:"Moyenne",scale:"Échelle",scaleAll:"Afficher tout",scaleFit:"Ajuster aux dimensions",scaleNoBorder:"Sans bordure",title:"Propriétés de l'animation Flash",vSpace:"Espacement vertical",validateHSpace:"L'espacement horizontal doit être un entier.",validateSrc:"Veuillez saisir l'URL",validateVSpace:"L'espacement vertical doit être un entier.", +windowMode:"Mode de fenêtre",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Fenêtre"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fr.js new file mode 100644 index 0000000..fdc543c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/fr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","fr",{access:"Accès aux scripts",accessAlways:"Toujours",accessNever:"Jamais",accessSameDomain:"Même domaine",alignAbsBottom:"Bas absolu",alignAbsMiddle:"Milieu absolu",alignBaseline:"Bas du texte",alignTextTop:"Haut du texte",bgcolor:"Couleur d'arrière-plan",chkFull:"Permettre le plein écran",chkLoop:"Boucle",chkMenu:"Activer le menu Flash",chkPlay:"Jouer automatiquement",flashvars:"Variables du Flash",hSpace:"Espacement horizontal",properties:"Propriétés du Flash", +propertiesTab:"Propriétés",quality:"Qualité",qualityAutoHigh:"Haute Auto",qualityAutoLow:"Basse Auto",qualityBest:"Meilleure",qualityHigh:"Haute",qualityLow:"Basse",qualityMedium:"Moyenne",scale:"Echelle",scaleAll:"Afficher tout",scaleFit:"Taille d'origine",scaleNoBorder:"Pas de bordure",title:"Propriétés du Flash",vSpace:"Espacement vertical",validateHSpace:"L'espacement horizontal doit être un nombre.",validateSrc:"L'adresse ne doit pas être vide.",validateVSpace:"L'espacement vertical doit être un nombre.", +windowMode:"Mode fenêtre",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Fenêtre"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/gl.js new file mode 100644 index 0000000..38e8508 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/gl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","gl",{access:"Acceso de scripts",accessAlways:"Sempre",accessNever:"Nunca",accessSameDomain:"Mesmo dominio",alignAbsBottom:"Abs Inferior",alignAbsMiddle:"Abs centro",alignBaseline:"Liña de base",alignTextTop:"Tope do texto",bgcolor:"Cor do fondo",chkFull:"Permitir pantalla completa",chkLoop:"Repetir",chkMenu:"Activar o menú do «Flash»",chkPlay:"Reprodución auomática",flashvars:"Opcións do «Flash»",hSpace:"Esp. Horiz.",properties:"Propiedades do «Flash»",propertiesTab:"Propiedades", +quality:"Calidade",qualityAutoHigh:"Alta, automática",qualityAutoLow:"Baixa, automática",qualityBest:"A mellor",qualityHigh:"Alta",qualityLow:"Baixa",qualityMedium:"Media",scale:"Escalar",scaleAll:"Amosar todo",scaleFit:"Encaixar axustando",scaleNoBorder:"Sen bordo",title:"Propiedades do «Flash»",vSpace:"Esp.Vert.",validateHSpace:"O espazado horizontal debe ser un número.",validateSrc:"O URL non pode estar baleiro.",validateVSpace:"O espazado vertical debe ser un número.",windowMode:"Modo da xanela", +windowModeOpaque:"Opaca",windowModeTransparent:"Transparente",windowModeWindow:"Xanela"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/gu.js new file mode 100644 index 0000000..601bb61 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/gu.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","gu",{access:"સ્ક્રીપ્ટ એક્સેસ",accessAlways:"હમેશાં",accessNever:"નહી",accessSameDomain:"એજ ડોમેન",alignAbsBottom:"Abs નીચે",alignAbsMiddle:"Abs ઉપર",alignBaseline:"આધાર લીટી",alignTextTop:"ટેક્સ્ટ ઉપર",bgcolor:"બૅકગ્રાઉન્ડ રંગ,",chkFull:"ફૂલ સ્ક્રીન કરવું",chkLoop:"લૂપ",chkMenu:"ફ્લૅશ મેન્યૂ નો પ્રયોગ કરો",chkPlay:"ઑટો/સ્વયં પ્લે",flashvars:"ફલેશ ના વિકલ્પો",hSpace:"સમસ્તરીય જગ્યા",properties:"ફ્લૅશના ગુણ",propertiesTab:"ગુણ",quality:"ગુણધર્મ",qualityAutoHigh:"ઓટો ઊંચું", +qualityAutoLow:"ઓટો નીચું",qualityBest:"શ્રેષ્ઠ",qualityHigh:"ઊંચું",qualityLow:"નીચું",qualityMedium:"મધ્યમ",scale:"સ્કેલ",scaleAll:"સ્કેલ ઓલ/બધુ બતાવો",scaleFit:"સ્કેલ એકદમ ફીટ",scaleNoBorder:"સ્કેલ બોર્ડર વગર",title:"ફ્લૅશ ગુણ",vSpace:"લંબરૂપ જગ્યા",validateHSpace:"HSpace આંકડો હોવો જોઈએ.",validateSrc:"લિંક URL ટાઇપ કરો",validateVSpace:"VSpace આંકડો હોવો જોઈએ.",windowMode:"વિન્ડો મોડ",windowModeOpaque:"અપારદર્શક",windowModeTransparent:"પારદર્શક",windowModeWindow:"વિન્ડો"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/he.js new file mode 100644 index 0000000..6870ea2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/he.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","he",{access:"גישת סקריפט",accessAlways:"תמיד",accessNever:"אף פעם",accessSameDomain:"דומיין זהה",alignAbsBottom:"לתחתית האבסולוטית",alignAbsMiddle:"מרכוז אבסולוטי",alignBaseline:"לקו התחתית",alignTextTop:"לראש הטקסט",bgcolor:"צבע רקע",chkFull:"אפשר חלון מלא",chkLoop:"לולאה",chkMenu:"אפשר תפריט פלאש",chkPlay:"ניגון אוטומטי",flashvars:"משתנים לפלאש",hSpace:"מרווח אופקי",properties:"מאפייני פלאש",propertiesTab:"מאפיינים",quality:"איכות",qualityAutoHigh:"גבוהה אוטומטית", +qualityAutoLow:"נמוכה אוטומטית",qualityBest:"מעולה",qualityHigh:"גבוהה",qualityLow:"נמוכה",qualityMedium:"ממוצעת",scale:"גודל",scaleAll:"הצג הכל",scaleFit:"התאמה מושלמת",scaleNoBorder:"ללא גבולות",title:"מאפיני פלאש",vSpace:"מרווח אנכי",validateHSpace:"המרווח האופקי חייב להיות מספר.",validateSrc:"יש להקליד את כתובת סרטון הפלאש (URL)",validateVSpace:"המרווח האנכי חייב להיות מספר.",windowMode:"מצב חלון",windowModeOpaque:"אטום",windowModeTransparent:"שקוף",windowModeWindow:"חלון"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/hi.js new file mode 100644 index 0000000..2f3b6e9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/hi.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","hi",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs नीचे",alignAbsMiddle:"Abs ऊपर",alignBaseline:"मूल रेखा",alignTextTop:"टेक्स्ट ऊपर",bgcolor:"बैक्ग्राउन्ड रंग",chkFull:"Allow Fullscreen",chkLoop:"लूप",chkMenu:"फ़्लैश मॅन्यू का प्रयोग करें",chkPlay:"ऑटो प्ले",flashvars:"Variables for Flash",hSpace:"हॉरिज़ॉन्टल स्पेस",properties:"फ़्लैश प्रॉपर्टीज़",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"स्केल",scaleAll:"सभी दिखायें",scaleFit:"बिल्कुल फ़िट",scaleNoBorder:"कोई बॉर्डर नहीं",title:"फ़्लैश प्रॉपर्टीज़",vSpace:"वर्टिकल स्पेस",validateHSpace:"HSpace must be a number.",validateSrc:"लिंक URL टाइप करें",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/hr.js new file mode 100644 index 0000000..ae7c82f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/hr.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","hr",{access:"Script Access",accessAlways:"Uvijek",accessNever:"Nikad",accessSameDomain:"Ista domena",alignAbsBottom:"Abs dolje",alignAbsMiddle:"Abs sredina",alignBaseline:"Bazno",alignTextTop:"Vrh teksta",bgcolor:"Boja pozadine",chkFull:"Omogući Fullscreen",chkLoop:"Ponavljaj",chkMenu:"Omogući Flash izbornik",chkPlay:"Auto Play",flashvars:"Varijable za Flash",hSpace:"HSpace",properties:"Flash svojstva",propertiesTab:"Svojstva",quality:"Kvaliteta",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Omjer",scaleAll:"Prikaži sve",scaleFit:"Točna veličina",scaleNoBorder:"Bez okvira",title:"Flash svojstva",vSpace:"VSpace",validateHSpace:"HSpace mora biti broj.",validateSrc:"Molimo upišite URL link",validateVSpace:"VSpace mora biti broj.",windowMode:"Vrsta prozora",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/hu.js new file mode 100644 index 0000000..9262090 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/hu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","hu",{access:"Szkript hozzáférés",accessAlways:"Mindig",accessNever:"Soha",accessSameDomain:"Azonos domainről",alignAbsBottom:"Legaljára",alignAbsMiddle:"Közepére",alignBaseline:"Alapvonalhoz",alignTextTop:"Szöveg tetejére",bgcolor:"Háttérszín",chkFull:"Teljes képernyő engedélyezése",chkLoop:"Folyamatosan",chkMenu:"Flash menü engedélyezése",chkPlay:"Automata lejátszás",flashvars:"Flash változók",hSpace:"Vízsz. táv",properties:"Flash tulajdonságai",propertiesTab:"Tulajdonságok", +quality:"Minőség",qualityAutoHigh:"Automata jó",qualityAutoLow:"Automata gyenge",qualityBest:"Legjobb",qualityHigh:"Jó",qualityLow:"Gyenge",qualityMedium:"Közepes",scale:"Méretezés",scaleAll:"Mindent mutat",scaleFit:"Teljes kitöltés",scaleNoBorder:"Keret nélkül",title:"Flash tulajdonságai",vSpace:"Függ. táv",validateHSpace:"A vízszintes távolsűág mezőbe csak számokat írhat.",validateSrc:"Adja meg a hivatkozás webcímét",validateVSpace:"A függőleges távolsűág mezőbe csak számokat írhat.",windowMode:"Ablak mód", +windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/id.js new file mode 100644 index 0000000..9272c08 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/id.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","id",{access:"Script Access",accessAlways:"Selalu",accessNever:"Tidak Pernah",accessSameDomain:"Domain yang sama",alignAbsBottom:"Abs Bottom",alignAbsMiddle:"Abs Middle",alignBaseline:"Dasar",alignTextTop:"Text Top",bgcolor:"Warna Latar Belakang",chkFull:"Izinkan Layar Penuh",chkLoop:"Loop",chkMenu:"Enable Flash Menu",chkPlay:"Mainkan Otomatis",flashvars:"Variables for Flash",hSpace:"HSpace",properties:"Flash Properties",propertiesTab:"Properti",quality:"Kualitas", +qualityAutoHigh:"Tinggi Otomatis",qualityAutoLow:"Rendah Otomatis",qualityBest:"Terbaik",qualityHigh:"Tinggi",qualityLow:"Rendah",qualityMedium:"Sedang",scale:"Scale",scaleAll:"Perlihatkan semua",scaleFit:"Exact Fit",scaleNoBorder:"Tanpa Batas",title:"Flash Properties",vSpace:"VSpace",validateHSpace:"HSpace harus sebuah angka",validateSrc:"URL tidak boleh kosong",validateVSpace:"VSpace harus sebuah angka",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparan",windowModeWindow:"Jendela"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/is.js new file mode 100644 index 0000000..0b0d71b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/is.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","is",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs neðst",alignAbsMiddle:"Abs miðjuð",alignBaseline:"Grunnlína",alignTextTop:"Efri brún texta",bgcolor:"Bakgrunnslitur",chkFull:"Allow Fullscreen",chkLoop:"Endurtekning",chkMenu:"Sýna Flash-valmynd",chkPlay:"Sjálfvirk spilun",flashvars:"Variables for Flash",hSpace:"Vinstri bil",properties:"Eigindi Flash",propertiesTab:"Properties",quality:"Quality", +qualityAutoHigh:"Auto High",qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Skali",scaleAll:"Sýna allt",scaleFit:"Fella skala að stærð",scaleNoBorder:"Án ramma",title:"Eigindi Flash",vSpace:"Hægri bil",validateHSpace:"HSpace must be a number.",validateSrc:"Sláðu inn veffang stiklunnar!",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/it.js new file mode 100644 index 0000000..7c5e09f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/it.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","it",{access:"Accesso Script",accessAlways:"Sempre",accessNever:"Mai",accessSameDomain:"Solo stesso dominio",alignAbsBottom:"In basso assoluto",alignAbsMiddle:"Centrato assoluto",alignBaseline:"Linea base",alignTextTop:"In alto al testo",bgcolor:"Colore sfondo",chkFull:"Permetti la modalità tutto schermo",chkLoop:"Riavvio automatico",chkMenu:"Abilita Menu di Flash",chkPlay:"Avvio Automatico",flashvars:"Variabili per Flash",hSpace:"HSpace",properties:"Proprietà Oggetto Flash", +propertiesTab:"Proprietà",quality:"Qualità",qualityAutoHigh:"Alta Automatica",qualityAutoLow:"Bassa Automatica",qualityBest:"Massima",qualityHigh:"Alta",qualityLow:"Bassa",qualityMedium:"Intermedia",scale:"Ridimensiona",scaleAll:"Mostra Tutto",scaleFit:"Dimensione Esatta",scaleNoBorder:"Senza Bordo",title:"Proprietà Oggetto Flash",vSpace:"VSpace",validateHSpace:"L'HSpace dev'essere un numero.",validateSrc:"Devi inserire l'URL del collegamento",validateVSpace:"Il VSpace dev'essere un numero.",windowMode:"Modalità finestra", +windowModeOpaque:"Opaca",windowModeTransparent:"Trasparente",windowModeWindow:"Finestra"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ja.js new file mode 100644 index 0000000..8a2238b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ja.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","ja",{access:"スプリクトアクセス(AllowScriptAccess)",accessAlways:"すべての場合に通信可能(Always)",accessNever:"すべての場合に通信不可能(Never)",accessSameDomain:"同一ドメインのみに通信可能(Same domain)",alignAbsBottom:"下部(絶対的)",alignAbsMiddle:"中央(絶対的)",alignBaseline:"ベースライン",alignTextTop:"テキスト上部",bgcolor:"背景色",chkFull:"フルスクリーン許可",chkLoop:"ループ再生",chkMenu:"Flashメニュー可能",chkPlay:"再生",flashvars:"フラッシュに渡す変数(FlashVars)",hSpace:"横間隔",properties:"Flash プロパティ",propertiesTab:"プロパティ",quality:"画質",qualityAutoHigh:"自動/高", +qualityAutoLow:"自動/低",qualityBest:"品質優先",qualityHigh:"高",qualityLow:"低",qualityMedium:"中",scale:"拡大縮小設定",scaleAll:"すべて表示",scaleFit:"上下左右にフィット",scaleNoBorder:"外が見えない様に拡大",title:"Flash プロパティ",vSpace:"縦間隔",validateHSpace:"横間隔は数値で入力してください。",validateSrc:"リンクURLを入力してください。",validateVSpace:"縦間隔は数値で入力してください。",windowMode:"ウィンドウモード",windowModeOpaque:"背景を不透明設定",windowModeTransparent:"背景を透過設定",windowModeWindow:"標準"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ka.js new file mode 100644 index 0000000..fb482ec --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ka.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","ka",{access:"სკრიპტის წვდომა",accessAlways:"ყოველთვის",accessNever:"არასდროს",accessSameDomain:"იგივე დომენი",alignAbsBottom:"ჩარჩოს ქვემოთა ნაწილის სწორება ტექსტისთვის",alignAbsMiddle:"ჩარჩოს შუა ნაწილის სწორება ტექსტისთვის",alignBaseline:"საბაზისო ხაზის სწორება",alignTextTop:"ტექსტი ზემოდან",bgcolor:"ფონის ფერი",chkFull:"მთელი ეკრანის დაშვება",chkLoop:"ჩაციკლვა",chkMenu:"Flash-ის მენიუს დაშვება",chkPlay:"ავტო გაშვება",flashvars:"ცვლადები Flash-ისთვის",hSpace:"ჰორიზ. სივრცე", +properties:"Flash-ის პარამეტრები",propertiesTab:"პარამეტრები",quality:"ხარისხი",qualityAutoHigh:"მაღალი (ავტომატური)",qualityAutoLow:"ძალიან დაბალი",qualityBest:"საუკეთესო",qualityHigh:"მაღალი",qualityLow:"დაბალი",qualityMedium:"საშუალო",scale:"მასშტაბირება",scaleAll:"ყველაფრის ჩვენება",scaleFit:"ზუსტი ჩასმა",scaleNoBorder:"ჩარჩოს გარეშე",title:"Flash-ის პარამეტრები",vSpace:"ვერტ. სივრცე",validateHSpace:"ჰორიზონტალური სივრცე არ უნდა იყოს ცარიელი.",validateSrc:"URL არ უნდა იყოს ცარიელი.",validateVSpace:"ვერტიკალური სივრცე არ უნდა იყოს ცარიელი.", +windowMode:"ფანჯრის რეჟიმი",windowModeOpaque:"გაუმჭვირვალე",windowModeTransparent:"გამჭვირვალე",windowModeWindow:"ფანჯარა"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/km.js new file mode 100644 index 0000000..a4babe9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/km.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","km",{access:"Script Access",accessAlways:"ជានិច្ច",accessNever:"កុំ",accessSameDomain:"Same domain",alignAbsBottom:"Abs Bottom",alignAbsMiddle:"Abs Middle",alignBaseline:"បន្ទាត់ជាមូលដ្ឋាន",alignTextTop:"លើអត្ថបទ",bgcolor:"ពណ៌ផ្ទៃខាងក្រោយ",chkFull:"អនុញ្ញាត​ឲ្យ​ពេញ​អេក្រង់",chkLoop:"ចំនួនដង",chkMenu:"បង្ហាញ មឺនុយរបស់ Flash",chkPlay:"លេងដោយស្វ័យប្រវត្ត",flashvars:"អថេរ Flash",hSpace:"គំលាតទទឹង",properties:"ការកំណត់ Flash",propertiesTab:"លក្ខណៈ​សម្បត្តិ",quality:"គុណភាព", +qualityAutoHigh:"ខ្ពស់​ស្វ័យ​ប្រវត្តិ",qualityAutoLow:"ទាប​ស្វ័យ​ប្រវត្តិ",qualityBest:"ល្អ​បំផុត",qualityHigh:"ខ្ពស់",qualityLow:"ទាប",qualityMedium:"មធ្យម",scale:"ទំហំ",scaleAll:"បង្ហាញទាំងអស់",scaleFit:"ត្រូវល្មម",scaleNoBorder:"មិនបង្ហាញស៊ុម",title:"ការកំណត់ Flash",vSpace:"គំលាតបណ្តោយ",validateHSpace:"HSpace must be a number.",validateSrc:"សូមសរសេរ អាស័យដ្ឋាន URL",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"ភាព​ថ្លា",windowModeWindow:"វីនដូ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ko.js new file mode 100644 index 0000000..77790e2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ko.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","ko",{access:"스크립트 허용",accessAlways:"항상 허용",accessNever:"허용 안함",accessSameDomain:"같은 도메인 허용",alignAbsBottom:"아래",alignAbsMiddle:"중간",alignBaseline:"영문 글꼴 기준선",alignTextTop:"글자 상단",bgcolor:"배경 색상",chkFull:"전체화면 허용",chkLoop:"반복",chkMenu:"플래시 메뉴 활성화",chkPlay:"자동 재생",flashvars:"플래시 변수",hSpace:"가로 여백",properties:"플래시 속성",propertiesTab:"속성",quality:"품질",qualityAutoHigh:"자동 높음",qualityAutoLow:"자동 낮음",qualityBest:"최고",qualityHigh:"높음",qualityLow:"낮음",qualityMedium:"중간",scale:"배율", +scaleAll:"모두 보기",scaleFit:"맞춤",scaleNoBorder:"테두리 없음",title:"플래시 속성",vSpace:"세로 여백",validateHSpace:"가로 여백은 숫자여야 합니다.",validateSrc:"링크 주소(URL)를 입력하십시오.",validateVSpace:"세로 여백은 숫자여야 합니다.",windowMode:"윈도우 모드",windowModeOpaque:"불투명",windowModeTransparent:"투명",windowModeWindow:"윈도우"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ku.js new file mode 100644 index 0000000..e961895 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ku.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","ku",{access:"دەستپێگەیشتنی نووسراو",accessAlways:"هەمیشه",accessNever:"هەرگیز",accessSameDomain:"هەمان دۆمەین",alignAbsBottom:"له ژێرەوه",alignAbsMiddle:"لەناوەند",alignBaseline:"هێڵەبنەڕەت",alignTextTop:"دەق لەسەرەوه",bgcolor:"ڕەنگی پاشبنەما",chkFull:"ڕێپێدان بە پڕی شاشه",chkLoop:"گرێ",chkMenu:"چالاککردنی لیستەی فلاش",chkPlay:"پێکردنی یان لێدانی خۆکار",flashvars:"گۆڕاوەکان بۆ فلاش",hSpace:"بۆشایی ئاسۆیی",properties:"خاسیەتی فلاش",propertiesTab:"خاسیەت",quality:"جۆرایەتی", +qualityAutoHigh:"بەرزی خۆکار",qualityAutoLow:"نزمی خۆکار",qualityBest:"باشترین",qualityHigh:"بەرزی",qualityLow:"نزم",qualityMedium:"مامناوەند",scale:"پێوانه",scaleAll:"نیشاندانی هەموو",scaleFit:"بەوردی بگونجێت",scaleNoBorder:"بێ پەراوێز",title:"خاسیەتی فلاش",vSpace:"بۆشایی ئەستونی",validateHSpace:"بۆشایی ئاسۆیی دەبێت ژمارە بێت.",validateSrc:"ناونیشانی بەستەر نابێت خاڵی بێت",validateVSpace:"بۆشایی ئەستونی دەبێت ژماره بێت.",windowMode:"شێوازی پەنجەره",windowModeOpaque:"ناڕوون",windowModeTransparent:"ڕۆشن", +windowModeWindow:"پەنجەره"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/lt.js new file mode 100644 index 0000000..8e013f2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/lt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","lt",{access:"Skripto priėjimas",accessAlways:"Visada",accessNever:"Niekada",accessSameDomain:"Tas pats domenas",alignAbsBottom:"Absoliučią apačią",alignAbsMiddle:"Absoliutų vidurį",alignBaseline:"Apatinę liniją",alignTextTop:"Teksto viršūnę",bgcolor:"Fono spalva",chkFull:"Leisti per visą ekraną",chkLoop:"Ciklas",chkMenu:"Leisti Flash meniu",chkPlay:"Automatinis paleidimas",flashvars:"Flash kintamieji",hSpace:"Hor.Erdvė",properties:"Flash savybės",propertiesTab:"Nustatymai", +quality:"Kokybė",qualityAutoHigh:"Automatiškai Gera",qualityAutoLow:"Automatiškai Žema",qualityBest:"Geriausia",qualityHigh:"Gera",qualityLow:"Žema",qualityMedium:"Vidutinė",scale:"Mastelis",scaleAll:"Rodyti visą",scaleFit:"Tikslus atitikimas",scaleNoBorder:"Be rėmelio",title:"Flash savybės",vSpace:"Vert.Erdvė",validateHSpace:"HSpace turi būti skaičius.",validateSrc:"Prašome įvesti nuorodos URL",validateVSpace:"VSpace turi būti skaičius.",windowMode:"Lango režimas",windowModeOpaque:"Nepermatomas", +windowModeTransparent:"Permatomas",windowModeWindow:"Langas"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/lv.js new file mode 100644 index 0000000..30edb93 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/lv.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","lv",{access:"Skripta pieeja",accessAlways:"Vienmēr",accessNever:"Nekad",accessSameDomain:"Tas pats domēns",alignAbsBottom:"Absolūti apakšā",alignAbsMiddle:"Absolūti vertikāli centrēts",alignBaseline:"Pamatrindā",alignTextTop:"Teksta augšā",bgcolor:"Fona krāsa",chkFull:"Pilnekrāns",chkLoop:"Nepārtraukti",chkMenu:"Atļaut Flash izvēlni",chkPlay:"Automātiska atskaņošana",flashvars:"Flash mainīgie",hSpace:"Horizontālā telpa",properties:"Flash īpašības",propertiesTab:"Uzstādījumi", +quality:"Kvalitāte",qualityAutoHigh:"Automātiski Augsta",qualityAutoLow:"Automātiski Zema",qualityBest:"Labākā",qualityHigh:"Augsta",qualityLow:"Zema",qualityMedium:"Vidēja",scale:"Mainīt izmēru",scaleAll:"Rādīt visu",scaleFit:"Precīzs izmērs",scaleNoBorder:"Bez rāmja",title:"Flash īpašības",vSpace:"Vertikālā telpa",validateHSpace:"Hspace jābūt skaitlim",validateSrc:"Lūdzu norādi hipersaiti",validateVSpace:"Vspace jābūt skaitlim",windowMode:"Loga režīms",windowModeOpaque:"Necaurspīdīgs",windowModeTransparent:"Caurspīdīgs", +windowModeWindow:"Logs"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/mk.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/mk.js new file mode 100644 index 0000000..ae22f2a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/mk.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","mk",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs Bottom",alignAbsMiddle:"Abs Middle",alignBaseline:"Baseline",alignTextTop:"Text Top",bgcolor:"Background color",chkFull:"Allow Fullscreen",chkLoop:"Loop",chkMenu:"Enable Flash Menu",chkPlay:"Auto Play",flashvars:"Variables for Flash",hSpace:"HSpace",properties:"Flash Properties",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Scale",scaleAll:"Show all",scaleFit:"Exact Fit",scaleNoBorder:"No Border",title:"Flash Properties",vSpace:"VSpace",validateHSpace:"HSpace must be a number.",validateSrc:"URL must not be empty.",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/mn.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/mn.js new file mode 100644 index 0000000..6759d77 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/mn.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","mn",{access:"Script Access",accessAlways:"Онцлогууд",accessNever:"Хэзээ ч үгүй",accessSameDomain:"Байнга",alignAbsBottom:"Abs доод талд",alignAbsMiddle:"Abs Дунд талд",alignBaseline:"Baseline",alignTextTop:"Текст дээр",bgcolor:"Дэвсгэр өнгө",chkFull:"Allow Fullscreen",chkLoop:"Давтах",chkMenu:"Флаш цэс идвэхжүүлэх",chkPlay:"Автоматаар тоглох",flashvars:"Variables for Flash",hSpace:"Хөндлөн зай",properties:"Флаш шинж чанар",propertiesTab:"Properties",quality:"Quality", +qualityAutoHigh:"Auto High",qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Өргөгтгөх",scaleAll:"Бүгдийг харуулах",scaleFit:"Яг тааруулах",scaleNoBorder:"Хүрээгүй",title:"Флаш шинж чанар",vSpace:"Босоо зай",validateHSpace:"HSpace must be a number.",validateSrc:"Линк URL-ээ төрөлжүүлнэ үү",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ms.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ms.js new file mode 100644 index 0000000..9012a68 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ms.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","ms",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Bawah Mutlak",alignAbsMiddle:"Pertengahan Mutlak",alignBaseline:"Garis Dasar",alignTextTop:"Atas Text",bgcolor:"Warna Latarbelakang",chkFull:"Allow Fullscreen",chkLoop:"Loop",chkMenu:"Enable Flash Menu",chkPlay:"Auto Play",flashvars:"Variables for Flash",hSpace:"Ruang Melintang",properties:"Flash Properties",propertiesTab:"Properties",quality:"Quality", +qualityAutoHigh:"Auto High",qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Scale",scaleAll:"Show all",scaleFit:"Exact Fit",scaleNoBorder:"No Border",title:"Flash Properties",vSpace:"Ruang Menegak",validateHSpace:"HSpace must be a number.",validateSrc:"Sila taip sambungan URL",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/nb.js new file mode 100644 index 0000000..c03f61f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/nb.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","nb",{access:"Scripttilgang",accessAlways:"Alltid",accessNever:"Aldri",accessSameDomain:"Samme domene",alignAbsBottom:"Abs bunn",alignAbsMiddle:"Abs midten",alignBaseline:"Bunnlinje",alignTextTop:"Tekst topp",bgcolor:"Bakgrunnsfarge",chkFull:"Tillat fullskjerm",chkLoop:"Loop",chkMenu:"Slå på Flash-meny",chkPlay:"Autospill",flashvars:"Variabler for flash",hSpace:"HMarg",properties:"Egenskaper for Flash-objekt",propertiesTab:"Egenskaper",quality:"Kvalitet",qualityAutoHigh:"Auto høy", +qualityAutoLow:"Auto lav",qualityBest:"Best",qualityHigh:"Høy",qualityLow:"Lav",qualityMedium:"Medium",scale:"Skaler",scaleAll:"Vis alt",scaleFit:"Skaler til å passe",scaleNoBorder:"Ingen ramme",title:"Flash-egenskaper",vSpace:"VMarg",validateHSpace:"HMarg må være et tall.",validateSrc:"Vennligst skriv inn lenkens url.",validateVSpace:"VMarg må være et tall.",windowMode:"Vindumodus",windowModeOpaque:"Opaque",windowModeTransparent:"Gjennomsiktig",windowModeWindow:"Vindu"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/nl.js new file mode 100644 index 0000000..193591b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/nl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","nl",{access:"Script toegang",accessAlways:"Altijd",accessNever:"Nooit",accessSameDomain:"Zelfde domeinnaam",alignAbsBottom:"Absoluut-onder",alignAbsMiddle:"Absoluut-midden",alignBaseline:"Basislijn",alignTextTop:"Boven tekst",bgcolor:"Achtergrondkleur",chkFull:"Schermvullend toestaan",chkLoop:"Herhalen",chkMenu:"Flashmenu's inschakelen",chkPlay:"Automatisch afspelen",flashvars:"Variabelen voor Flash",hSpace:"HSpace",properties:"Eigenschappen Flash",propertiesTab:"Eigenschappen", +quality:"Kwaliteit",qualityAutoHigh:"Automatisch hoog",qualityAutoLow:"Automatisch laag",qualityBest:"Beste",qualityHigh:"Hoog",qualityLow:"Laag",qualityMedium:"Gemiddeld",scale:"Schaal",scaleAll:"Alles tonen",scaleFit:"Precies passend",scaleNoBorder:"Geen rand",title:"Eigenschappen Flash",vSpace:"VSpace",validateHSpace:"De HSpace moet een getal zijn.",validateSrc:"De URL mag niet leeg zijn.",validateVSpace:"De VSpace moet een getal zijn.",windowMode:"Venster modus",windowModeOpaque:"Ondoorzichtig", +windowModeTransparent:"Doorzichtig",windowModeWindow:"Venster"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/no.js new file mode 100644 index 0000000..4f660ce --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/no.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","no",{access:"Scripttilgang",accessAlways:"Alltid",accessNever:"Aldri",accessSameDomain:"Samme domene",alignAbsBottom:"Abs bunn",alignAbsMiddle:"Abs midten",alignBaseline:"Bunnlinje",alignTextTop:"Tekst topp",bgcolor:"Bakgrunnsfarge",chkFull:"Tillat fullskjerm",chkLoop:"Loop",chkMenu:"Slå på Flash-meny",chkPlay:"Autospill",flashvars:"Variabler for flash",hSpace:"HMarg",properties:"Egenskaper for Flash-objekt",propertiesTab:"Egenskaper",quality:"Kvalitet",qualityAutoHigh:"Auto høy", +qualityAutoLow:"Auto lav",qualityBest:"Best",qualityHigh:"Høy",qualityLow:"Lav",qualityMedium:"Medium",scale:"Skaler",scaleAll:"Vis alt",scaleFit:"Skaler til å passe",scaleNoBorder:"Ingen ramme",title:"Flash-egenskaper",vSpace:"VMarg",validateHSpace:"HMarg må være et tall.",validateSrc:"Vennligst skriv inn lenkens url.",validateVSpace:"VMarg må være et tall.",windowMode:"Vindumodus",windowModeOpaque:"Opaque",windowModeTransparent:"Gjennomsiktig",windowModeWindow:"Vindu"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/pl.js new file mode 100644 index 0000000..aa3da87 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/pl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","pl",{access:"Dostęp skryptów",accessAlways:"Zawsze",accessNever:"Nigdy",accessSameDomain:"Ta sama domena",alignAbsBottom:"Do dołu",alignAbsMiddle:"Do środka w pionie",alignBaseline:"Do linii bazowej",alignTextTop:"Do góry tekstu",bgcolor:"Kolor tła",chkFull:"Zezwól na pełny ekran",chkLoop:"Pętla",chkMenu:"Włącz menu",chkPlay:"Autoodtwarzanie",flashvars:"Zmienne obiektu Flash",hSpace:"Odstęp poziomy",properties:"Właściwości obiektu Flash",propertiesTab:"Właściwości", +quality:"Jakość",qualityAutoHigh:"Auto wysoka",qualityAutoLow:"Auto niska",qualityBest:"Najlepsza",qualityHigh:"Wysoka",qualityLow:"Niska",qualityMedium:"Średnia",scale:"Skaluj",scaleAll:"Pokaż wszystko",scaleFit:"Dokładne dopasowanie",scaleNoBorder:"Bez obramowania",title:"Właściwości obiektu Flash",vSpace:"Odstęp pionowy",validateHSpace:"Odstęp poziomy musi być liczbą.",validateSrc:"Podaj adres URL",validateVSpace:"Odstęp pionowy musi być liczbą.",windowMode:"Tryb okna",windowModeOpaque:"Nieprzezroczyste", +windowModeTransparent:"Przezroczyste",windowModeWindow:"Okno"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/pt-br.js new file mode 100644 index 0000000..4be3e14 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/pt-br.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","pt-br",{access:"Acesso ao script",accessAlways:"Sempre",accessNever:"Nunca",accessSameDomain:"Acessar Mesmo Domínio",alignAbsBottom:"Inferior Absoluto",alignAbsMiddle:"Centralizado Absoluto",alignBaseline:"Baseline",alignTextTop:"Superior Absoluto",bgcolor:"Cor do Plano de Fundo",chkFull:"Permitir tela cheia",chkLoop:"Tocar Infinitamente",chkMenu:"Habilita Menu Flash",chkPlay:"Tocar Automaticamente",flashvars:"Variáveis do Flash",hSpace:"HSpace",properties:"Propriedades do Flash", +propertiesTab:"Propriedades",quality:"Qualidade",qualityAutoHigh:"Qualidade Alta Automática",qualityAutoLow:"Qualidade Baixa Automática",qualityBest:"Qualidade Melhor",qualityHigh:"Qualidade Alta",qualityLow:"Qualidade Baixa",qualityMedium:"Qualidade Média",scale:"Escala",scaleAll:"Mostrar tudo",scaleFit:"Escala Exata",scaleNoBorder:"Sem Borda",title:"Propriedades do Flash",vSpace:"VSpace",validateHSpace:"O HSpace tem que ser um número",validateSrc:"Por favor, digite o endereço do link",validateVSpace:"O VSpace tem que ser um número.", +windowMode:"Modo da janela",windowModeOpaque:"Opaca",windowModeTransparent:"Transparente",windowModeWindow:"Janela"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/pt.js new file mode 100644 index 0000000..374ffae --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/pt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","pt",{access:"Acesso ao Script",accessAlways:"Sempre",accessNever:"Nunca",accessSameDomain:"Mesmo dominio",alignAbsBottom:"Abs inferior",alignAbsMiddle:"Abs centro",alignBaseline:"Linha de base",alignTextTop:"Topo do texto",bgcolor:"Cor de Fundo",chkFull:"Permitir Ecrã inteiro",chkLoop:"Loop",chkMenu:"Permitir Menu do Flash",chkPlay:"Reproduzir automaticamente",flashvars:"Variaveis para o Flash",hSpace:"Esp.Horiz",properties:"Propriedades do Flash",propertiesTab:"Propriedades", +quality:"Qualidade",qualityAutoHigh:"Alta Automaticamente",qualityAutoLow:"Baixa Automaticamente",qualityBest:"Melhor",qualityHigh:"Alta",qualityLow:"Baixa",qualityMedium:"Média",scale:"Escala",scaleAll:"Mostrar tudo",scaleFit:"Tamanho Exacto",scaleNoBorder:"Sem Limites",title:"Propriedades do Flash",vSpace:"Esp.Vert",validateHSpace:"HSpace tem de ser um numero.",validateSrc:"Por favor introduza a hiperligação URL",validateVSpace:"VSpace tem de ser um numero.",windowMode:"Modo de janela",windowModeOpaque:"Opaco", +windowModeTransparent:"Transparente",windowModeWindow:"Janela"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ro.js new file mode 100644 index 0000000..8be6b18 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ro.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","ro",{access:"Acces script",accessAlways:"Întotdeauna",accessNever:"Niciodată",accessSameDomain:"Același domeniu",alignAbsBottom:"Jos absolut (Abs Bottom)",alignAbsMiddle:"Mijloc absolut (Abs Middle)",alignBaseline:"Linia de jos (Baseline)",alignTextTop:"Text sus",bgcolor:"Coloarea fundalului",chkFull:"Permite pe tot ecranul",chkLoop:"Repetă (Loop)",chkMenu:"Activează meniul flash",chkPlay:"Rulează automat",flashvars:"Variabile pentru flash",hSpace:"HSpace",properties:"Proprietăţile flashului", +propertiesTab:"Proprietăți",quality:"Calitate",qualityAutoHigh:"Auto înaltă",qualityAutoLow:"Auto Joasă",qualityBest:"Cea mai bună",qualityHigh:"Înaltă",qualityLow:"Joasă",qualityMedium:"Medie",scale:"Scală",scaleAll:"Arată tot",scaleFit:"Potriveşte",scaleNoBorder:"Fără bordură (No border)",title:"Proprietăţile flashului",vSpace:"VSpace",validateHSpace:"Hspace trebuie să fie un număr.",validateSrc:"Vă rugăm să scrieţi URL-ul",validateVSpace:"VSpace trebuie să fie un număr",windowMode:"Mod fereastră", +windowModeOpaque:"Opacă",windowModeTransparent:"Transparentă",windowModeWindow:"Fereastră"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ru.js new file mode 100644 index 0000000..d4f39fb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ru.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","ru",{access:"Доступ к скриптам",accessAlways:"Всегда",accessNever:"Никогда",accessSameDomain:"В том же домене",alignAbsBottom:"По низу текста",alignAbsMiddle:"По середине текста",alignBaseline:"По базовой линии",alignTextTop:"По верху текста",bgcolor:"Цвет фона",chkFull:"Разрешить полноэкранный режим",chkLoop:"Повторять",chkMenu:"Включить меню Flash",chkPlay:"Автоматическое воспроизведение",flashvars:"Переменные для Flash",hSpace:"Гориз. отступ",properties:"Свойства Flash", +propertiesTab:"Свойства",quality:"Качество",qualityAutoHigh:"Запуск на высоком",qualityAutoLow:"Запуск на низком",qualityBest:"Лучшее",qualityHigh:"Высокое",qualityLow:"Низкое",qualityMedium:"Среднее",scale:"Масштабировать",scaleAll:"Пропорционально",scaleFit:"Заполнять",scaleNoBorder:"Заходить за границы",title:"Свойства Flash",vSpace:"Вертик. отступ",validateHSpace:"Горизонтальный отступ задается числом.",validateSrc:"Вы должны ввести ссылку",validateVSpace:"Вертикальный отступ задается числом.", +windowMode:"Взаимодействие с окном",windowModeOpaque:"Непрозрачный",windowModeTransparent:"Прозрачный",windowModeWindow:"Обычный"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/si.js new file mode 100644 index 0000000..6184682 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/si.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","si",{access:"පිටපත් ප්‍රවේශය",accessAlways:"හැමවිටම",accessNever:"කිසිදා නොවේ",accessSameDomain:"එකම වසමේ",alignAbsBottom:"පතුල",alignAbsMiddle:"Abs ",alignBaseline:"පාද රේඛාව",alignTextTop:"වගන්තිය ඉහල",bgcolor:"පසුබිම් වර්ණය",chkFull:"පුර්ණ තිරය සදහා අවසර",chkLoop:"පුඩුව",chkMenu:"සක්‍රිය බබලන මෙනුව",chkPlay:"ස්‌වයංක්‍රිය ක්‍රියාත්මක වීම",flashvars:"වෙනස්වන දත්ත",hSpace:"HSpace",properties:"බබලන ගුණ",propertiesTab:"ගුණ",quality:"තත්වය",qualityAutoHigh:"ස්‌වයංක්‍රිය ", +qualityAutoLow:" ස්‌වයංක්‍රිය ",qualityBest:"වඩාත් ගැලපෙන",qualityHigh:"ඉහළ",qualityLow:"පහළ",qualityMedium:"මධ්‍ය",scale:"පරිමාණ",scaleAll:"සියල්ල ",scaleFit:"හරියටම ගැලපෙන",scaleNoBorder:"මාඉම් නොමැති",title:"බබලන ",vSpace:"VSpace",validateHSpace:"HSpace සංක්‍යාවක් විය යුතුය.",validateSrc:"URL හිස් නොවිය ",validateVSpace:"VSpace සංක්‍යාවක් විය යුතුය",windowMode:"ජනෙල ක්‍රමය",windowModeOpaque:"විනිවිද පෙනෙන",windowModeTransparent:"විනිවිද පෙනෙන",windowModeWindow:"ජනෙල"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sk.js new file mode 100644 index 0000000..e959ca0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","sk",{access:"Prístup skriptu",accessAlways:"Vždy",accessNever:"Nikdy",accessSameDomain:"Rovnaká doména",alignAbsBottom:"Úplne dole",alignAbsMiddle:"Do stredu",alignBaseline:"Na základnú čiaru",alignTextTop:"Na horný okraj textu",bgcolor:"Farba pozadia",chkFull:"Povoliť zobrazenie na celú obrazovku (fullscreen)",chkLoop:"Opakovanie",chkMenu:"Povoliť Flash Menu",chkPlay:"Automatické prehrávanie",flashvars:"Premenné pre Flash",hSpace:"H-medzera",properties:"Vlastnosti Flashu", +propertiesTab:"Vlastnosti",quality:"Kvalita",qualityAutoHigh:"Automaticky vysoká",qualityAutoLow:"Automaticky nízka",qualityBest:"Najlepšia",qualityHigh:"Vysoká",qualityLow:"Nízka",qualityMedium:"Stredná",scale:"Mierka",scaleAll:"Zobraziť všetko",scaleFit:"Roztiahnuť, aby sedelo presne",scaleNoBorder:"Bez okrajov",title:"Vlastnosti Flashu",vSpace:"V-medzera",validateHSpace:"H-medzera musí byť číslo.",validateSrc:"URL nesmie byť prázdne.",validateVSpace:"V-medzera musí byť číslo",windowMode:"Mód okna", +windowModeOpaque:"Nepriehľadný",windowModeTransparent:"Priehľadný",windowModeWindow:"Okno"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sl.js new file mode 100644 index 0000000..3de6413 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","sl",{access:"Dostop skript",accessAlways:"Vedno",accessNever:"Nikoli",accessSameDomain:"Samo ista domena",alignAbsBottom:"Popolnoma na dno",alignAbsMiddle:"Popolnoma v sredino",alignBaseline:"Na osnovno črto",alignTextTop:"Besedilo na vrh",bgcolor:"Barva ozadja",chkFull:"Dovoli celozaslonski način",chkLoop:"Ponavljanje",chkMenu:"Omogoči Flash Meni",chkPlay:"Samodejno predvajaj",flashvars:"Spremenljivke za Flash",hSpace:"Vodoravni razmik",properties:"Lastnosti Flash", +propertiesTab:"Lastnosti",quality:"Kakovost",qualityAutoHigh:"Samodejno visoka",qualityAutoLow:"Samodejno nizka",qualityBest:"Najvišja",qualityHigh:"Visoka",qualityLow:"Nizka",qualityMedium:"Srednja",scale:"Povečava",scaleAll:"Pokaži vse",scaleFit:"Natančno prileganje",scaleNoBorder:"Brez obrobe",title:"Lastnosti Flash",vSpace:"Navpični razmik",validateHSpace:"Vodoravni razmik mora biti število.",validateSrc:"Vnesite URL povezave",validateVSpace:"Navpični razmik mora biti število.",windowMode:"Vrsta okna", +windowModeOpaque:"Motno",windowModeTransparent:"Prosojno",windowModeWindow:"Okno"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sq.js new file mode 100644 index 0000000..bded527 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sq.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","sq",{access:"Qasja në Skriptë",accessAlways:"Gjithnjë",accessNever:"Asnjëherë",accessSameDomain:"Fusha e Njëjtë",alignAbsBottom:"Abs në Fund",alignAbsMiddle:"Abs në Mes",alignBaseline:"Baza",alignTextTop:"Koka e Tekstit",bgcolor:"Ngjyra e Prapavijës",chkFull:"Lejo Ekran të Plotë",chkLoop:"Përsëritje",chkMenu:"Lejo Menynë për Flash",chkPlay:"Auto Play",flashvars:"Variablat për Flash",hSpace:"Hapësira Horizontale",properties:"Karakteristikat për Flash",propertiesTab:"Karakteristikat", +quality:"Kualiteti",qualityAutoHigh:"Automatikisht i Lartë",qualityAutoLow:"Automatikisht i Ulët",qualityBest:"Më i Miri",qualityHigh:"I Lartë",qualityLow:"Më i Ulti",qualityMedium:"I Mesëm",scale:"Shkalla",scaleAll:"Shfaq të Gjitha",scaleFit:"Përputhje të Plotë",scaleNoBorder:"Pa Kornizë",title:"Rekuizitat për Flash",vSpace:"Hapësira Vertikale",validateHSpace:"Hapësira Horizontale duhet të është numër.",validateSrc:"URL nuk duhet mbetur zbrazur.",validateVSpace:"Hapësira Vertikale duhet të është numër.", +windowMode:"Window mode",windowModeOpaque:"Errët",windowModeTransparent:"Tejdukshëm",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sr-latn.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sr-latn.js new file mode 100644 index 0000000..641140c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sr-latn.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","sr-latn",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs dole",alignAbsMiddle:"Abs sredina",alignBaseline:"Bazno",alignTextTop:"Vrh teksta",bgcolor:"Boja pozadine",chkFull:"Allow Fullscreen",chkLoop:"Ponavljaj",chkMenu:"Uključi fleš meni",chkPlay:"Automatski start",flashvars:"Variables for Flash",hSpace:"HSpace",properties:"Osobine fleša",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Skaliraj",scaleAll:"Prikaži sve",scaleFit:"Popuni površinu",scaleNoBorder:"Bez ivice",title:"Osobine fleša",vSpace:"VSpace",validateHSpace:"HSpace must be a number.",validateSrc:"Unesite URL linka",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sr.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sr.js new file mode 100644 index 0000000..c62614d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sr.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","sr",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs доле",alignAbsMiddle:"Abs средина",alignBaseline:"Базно",alignTextTop:"Врх текста",bgcolor:"Боја позадине",chkFull:"Allow Fullscreen",chkLoop:"Понављај",chkMenu:"Укључи флеш мени",chkPlay:"Аутоматски старт",flashvars:"Variables for Flash",hSpace:"HSpace",properties:"Особине Флеша",propertiesTab:"Properties",quality:"Quality",qualityAutoHigh:"Auto High", +qualityAutoLow:"Auto Low",qualityBest:"Best",qualityHigh:"High",qualityLow:"Low",qualityMedium:"Medium",scale:"Скалирај",scaleAll:"Прикажи све",scaleFit:"Попуни површину",scaleNoBorder:"Без ивице",title:"Особине флеша",vSpace:"VSpace",validateHSpace:"HSpace must be a number.",validateSrc:"Унесите УРЛ линка",validateVSpace:"VSpace must be a number.",windowMode:"Window mode",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent",windowModeWindow:"Window"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sv.js new file mode 100644 index 0000000..7c6edcc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/sv.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","sv",{access:"Script-tillgång",accessAlways:"Alltid",accessNever:"Aldrig",accessSameDomain:"Samma domän",alignAbsBottom:"Absolut nederkant",alignAbsMiddle:"Absolut centrering",alignBaseline:"Baslinje",alignTextTop:"Text överkant",bgcolor:"Bakgrundsfärg",chkFull:"Tillåt helskärm",chkLoop:"Upprepa/Loopa",chkMenu:"Aktivera Flashmeny",chkPlay:"Automatisk uppspelning",flashvars:"Variabler för Flash",hSpace:"Horis. marginal",properties:"Flashegenskaper",propertiesTab:"Egenskaper", +quality:"Kvalitet",qualityAutoHigh:"Auto Hög",qualityAutoLow:"Auto Låg",qualityBest:"Bäst",qualityHigh:"Hög",qualityLow:"Låg",qualityMedium:"Medium",scale:"Skala",scaleAll:"Visa allt",scaleFit:"Exakt passning",scaleNoBorder:"Ingen ram",title:"Flashegenskaper",vSpace:"Vert. marginal",validateHSpace:"HSpace måste vara ett nummer.",validateSrc:"Var god ange länkens URL",validateVSpace:"VSpace måste vara ett nummer.",windowMode:"Fönsterläge",windowModeOpaque:"Opaque",windowModeTransparent:"Transparent", +windowModeWindow:"Fönster"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/th.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/th.js new file mode 100644 index 0000000..4993234 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/th.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","th",{access:"การเข้าถึงสคริปต์",accessAlways:"ตลอดไป",accessNever:"ไม่เลย",accessSameDomain:"โดเมนเดียวกัน",alignAbsBottom:"ชิดด้านล่างสุด",alignAbsMiddle:"กึ่งกลาง",alignBaseline:"ชิดบรรทัด",alignTextTop:"ใต้ตัวอักษร",bgcolor:"สีพื้นหลัง",chkFull:"อนุญาตให้แสดงเต็มหน้าจอได้",chkLoop:"เล่นวนรอบ Loop",chkMenu:"ให้ใช้งานเมนูของ Flash",chkPlay:"เล่นอัตโนมัติ Auto Play",flashvars:"ตัวแปรสำหรับ Flas",hSpace:"ระยะแนวนอน",properties:"คุณสมบัติของไฟล์ Flash",propertiesTab:"คุณสมบัติ", +quality:"คุณภาพ",qualityAutoHigh:"ปรับคุณภาพสูงอัตโนมัติ",qualityAutoLow:"ปรับคุณภาพต่ำอัตโนมัติ",qualityBest:"ดีที่สุด",qualityHigh:"สูง",qualityLow:"ต่ำ",qualityMedium:"ปานกลาง",scale:"อัตราส่วน Scale",scaleAll:"แสดงให้เห็นทั้งหมด Show all",scaleFit:"แสดงให้พอดีกับพื้นที่ Exact Fit",scaleNoBorder:"ไม่แสดงเส้นขอบ No Border",title:"คุณสมบัติของไฟล์ Flash",vSpace:"ระยะแนวตั้ง",validateHSpace:"HSpace ต้องเป็นจำนวนตัวเลข",validateSrc:"กรุณาระบุที่อยู่อ้างอิงออนไลน์ (URL)",validateVSpace:"VSpace ต้องเป็นจำนวนตัวเลข", +windowMode:"โหมดหน้าต่าง",windowModeOpaque:"ความทึบแสง",windowModeTransparent:"ความโปรงแสง",windowModeWindow:"หน้าต่าง"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/tr.js new file mode 100644 index 0000000..8d76aa2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/tr.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","tr",{access:"Kod İzni",accessAlways:"Herzaman",accessNever:"Asla",accessSameDomain:"Aynı domain",alignAbsBottom:"Tam Altı",alignAbsMiddle:"Tam Ortası",alignBaseline:"Taban Çizgisi",alignTextTop:"Yazı Tepeye",bgcolor:"Arka Renk",chkFull:"Tam ekrana İzinver",chkLoop:"Döngü",chkMenu:"Flash Menüsünü Kullan",chkPlay:"Otomatik Oynat",flashvars:"Flash Değerleri",hSpace:"Yatay Boşluk",properties:"Flash Özellikleri",propertiesTab:"Özellikler",quality:"Kalite",qualityAutoHigh:"Otomatik Yükseklik", +qualityAutoLow:"Otomatik Düşüklük",qualityBest:"En iyi",qualityHigh:"Yüksek",qualityLow:"Düşük",qualityMedium:"Orta",scale:"Boyutlandır",scaleAll:"Hepsini Göster",scaleFit:"Tam Sığdır",scaleNoBorder:"Kenar Yok",title:"Flash Özellikleri",vSpace:"Dikey Boşluk",validateHSpace:"HSpace sayı olmalıdır.",validateSrc:"Lütfen köprü URL'sini yazın",validateVSpace:"VSpace sayı olmalıdır.",windowMode:"Pencere modu",windowModeOpaque:"Opak",windowModeTransparent:"Şeffaf",windowModeWindow:"Pencere"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/tt.js new file mode 100644 index 0000000..f8695a8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/tt.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","tt",{access:"Script Access",accessAlways:"Һəрвакыт",accessNever:"Беркайчан да",accessSameDomain:"Same domain",alignAbsBottom:"Иң аска",alignAbsMiddle:"Төгәл уртада",alignBaseline:"Таяныч сызыгы",alignTextTop:"Текст өсте",bgcolor:"Фон төсе",chkFull:"Allow Fullscreen",chkLoop:"Әйләнеш",chkMenu:"Enable Flash Menu",chkPlay:"Auto Play",flashvars:"Variables for Flash",hSpace:"Горизонталь ара",properties:"Флеш үзлекләре",propertiesTab:"Үзлекләр",quality:"Сыйфат",qualityAutoHigh:"Авто югары сыйфат", +qualityAutoLow:"Авто түбән сыйфат",qualityBest:"Иң югары сыйфат",qualityHigh:"Югары",qualityLow:"Түбəн",qualityMedium:"Уртача",scale:"Зурлык",scaleAll:"Барысын күрсәтү",scaleFit:"Exact Fit",scaleNoBorder:"Чиксез",title:"Флеш үзлекләре",vSpace:"Вертикаль ара",validateHSpace:"Горизонталь ара сан булырга тиеш.",validateSrc:"URL буш булмаска тиеш.",validateVSpace:"Вертикаль ара сан булырга тиеш.",windowMode:"Тəрəзə тәртибе",windowModeOpaque:"Үтә күренмәле",windowModeTransparent:"Үтə күренмəле",windowModeWindow:"Тəрəзə"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ug.js new file mode 100644 index 0000000..36bdb42 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/ug.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","ug",{access:"قوليازما زىيارەتكە يول قوي",accessAlways:"ھەمىشە",accessNever:"ھەرگىز",accessSameDomain:"ئوخشاش دائىرىدە",alignAbsBottom:"مۇتلەق ئاستى",alignAbsMiddle:"مۇتلەق ئوتتۇرا",alignBaseline:"ئاساسىي سىزىق",alignTextTop:"تېكىست ئۈستىدە",bgcolor:"تەگلىك رەڭگى",chkFull:"پۈتۈن ئېكراننى قوزغات",chkLoop:"دەۋرىي",chkMenu:"Flash تىزىملىكنى قوزغات",chkPlay:"ئۆزلۈكىدىن چال",flashvars:"Flash ئۆزگەرگۈچى",hSpace:"توغرىسىغا ئارىلىق",properties:"Flash خاسلىق",propertiesTab:"خاسلىق", +quality:"سۈپەت",qualityAutoHigh:"يۇقىرى (ئاپتوماتىك)",qualityAutoLow:"تۆۋەن (ئاپتوماتىك)",qualityBest:"ئەڭ ياخشى",qualityHigh:"يۇقىرى",qualityLow:"تۆۋەن",qualityMedium:"ئوتتۇرا (ئاپتوماتىك)",scale:"نىسبىتى",scaleAll:"ھەممىنى كۆرسەت",scaleFit:"قەتئىي ماسلىشىش",scaleNoBorder:"گىرۋەك يوق",title:"ماۋزۇ",vSpace:"بويىغا ئارىلىق",validateHSpace:"توغرىسىغا ئارىلىق چوقۇم سان بولىدۇ",validateSrc:"ئەسلى ھۆججەت ئادرېسىنى كىرگۈزۈڭ",validateVSpace:"بويىغا ئارىلىق چوقۇم سان بولىدۇ",windowMode:"كۆزنەك ھالىتى",windowModeOpaque:"خىرە", +windowModeTransparent:"سۈزۈك",windowModeWindow:"كۆزنەك گەۋدىسى"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/uk.js new file mode 100644 index 0000000..cc458da --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/uk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","uk",{access:"Доступ до скрипта",accessAlways:"Завжди",accessNever:"Ніколи",accessSameDomain:"З того ж домена",alignAbsBottom:"По нижньому краю (abs)",alignAbsMiddle:"По середині (abs)",alignBaseline:"По базовій лінії",alignTextTop:"Текст по верхньому краю",bgcolor:"Колір фону",chkFull:"Дозволити повноекранний перегляд",chkLoop:"Циклічно",chkMenu:"Дозволити меню Flash",chkPlay:"Автопрогравання",flashvars:"Змінні Flash",hSpace:"Гориз. відступ",properties:"Властивості Flash", +propertiesTab:"Властивості",quality:"Якість",qualityAutoHigh:"Автом. відмінна",qualityAutoLow:"Автом. низька",qualityBest:"Відмінна",qualityHigh:"Висока",qualityLow:"Низька",qualityMedium:"Середня",scale:"Масштаб",scaleAll:"Показати все",scaleFit:"Поч. розмір",scaleNoBorder:"Без рамки",title:"Властивості Flash",vSpace:"Верт. відступ",validateHSpace:"Гориз. відступ повинен бути цілим числом.",validateSrc:"Будь ласка, вкажіть URL посилання",validateVSpace:"Верт. відступ повинен бути цілим числом.", +windowMode:"Віконний режим",windowModeOpaque:"Непрозорість",windowModeTransparent:"Прозорість",windowModeWindow:"Вікно"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/vi.js new file mode 100644 index 0000000..17a0c1b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/vi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("flash","vi",{access:"Truy cập mã",accessAlways:"Luôn luôn",accessNever:"Không bao giờ",accessSameDomain:"Cùng tên miền",alignAbsBottom:"Dưới tuyệt đối",alignAbsMiddle:"Giữa tuyệt đối",alignBaseline:"Đường cơ sở",alignTextTop:"Phía trên chữ",bgcolor:"Màu nền",chkFull:"Cho phép toàn màn hình",chkLoop:"Lặp",chkMenu:"Cho phép bật menu của Flash",chkPlay:"Tự động chạy",flashvars:"Các biến số dành cho Flash",hSpace:"Khoảng đệm ngang",properties:"Thuộc tính Flash",propertiesTab:"Thuộc tính", +quality:"Chất lượng",qualityAutoHigh:"Cao tự động",qualityAutoLow:"Thấp tự động",qualityBest:"Tốt nhất",qualityHigh:"Cao",qualityLow:"Thấp",qualityMedium:"Trung bình",scale:"Tỷ lệ",scaleAll:"Hiển thị tất cả",scaleFit:"Vừa vặn",scaleNoBorder:"Không đường viền",title:"Thuộc tính Flash",vSpace:"Khoảng đệm dọc",validateHSpace:"Khoảng đệm ngang phải là số nguyên.",validateSrc:"Hãy đưa vào đường dẫn liên kết",validateVSpace:"Khoảng đệm dọc phải là số nguyên.",windowMode:"Chế độ cửa sổ",windowModeOpaque:"Mờ đục", +windowModeTransparent:"Trong suốt",windowModeWindow:"Cửa sổ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/zh-cn.js new file mode 100644 index 0000000..d7be33b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/zh-cn.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","zh-cn",{access:"允许脚本访问",accessAlways:"总是",accessNever:"从不",accessSameDomain:"同域",alignAbsBottom:"绝对底部",alignAbsMiddle:"绝对居中",alignBaseline:"基线",alignTextTop:"文本上方",bgcolor:"背景颜色",chkFull:"启用全屏",chkLoop:"循环",chkMenu:"启用 Flash 菜单",chkPlay:"自动播放",flashvars:"Flash 变量",hSpace:"水平间距",properties:"Flash 属性",propertiesTab:"属性",quality:"质量",qualityAutoHigh:"高(自动)",qualityAutoLow:"低(自动)",qualityBest:"最好",qualityHigh:"高",qualityLow:"低",qualityMedium:"中(自动)",scale:"缩放",scaleAll:"全部显示", +scaleFit:"严格匹配",scaleNoBorder:"无边框",title:"标题",vSpace:"垂直间距",validateHSpace:"水平间距必须为数字格式",validateSrc:"请输入源文件地址",validateVSpace:"垂直间距必须为数字格式",windowMode:"窗体模式",windowModeOpaque:"不透明",windowModeTransparent:"透明",windowModeWindow:"窗体"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/zh.js new file mode 100644 index 0000000..83af682 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/lang/zh.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("flash","zh",{access:"腳本存取",accessAlways:"永遠",accessNever:"從不",accessSameDomain:"相同網域",alignAbsBottom:"絕對下方",alignAbsMiddle:"絕對置中",alignBaseline:"基準線",alignTextTop:"上層文字",bgcolor:"背景顏色",chkFull:"允許全螢幕",chkLoop:"重複播放",chkMenu:"啟用 Flash 選單",chkPlay:"自動播放",flashvars:"Flash 變數",hSpace:"HSpace",properties:"Flash 屬性​​",propertiesTab:"屬性",quality:"品質",qualityAutoHigh:"自動高",qualityAutoLow:"自動低",qualityBest:"最佳",qualityHigh:"高",qualityLow:"低",qualityMedium:"中",scale:"縮放比例",scaleAll:"全部顯示", +scaleFit:"最適化",scaleNoBorder:"無框線",title:"Flash 屬性​​",vSpace:"VSpace",validateHSpace:"HSpace 必須為數字。",validateSrc:"URL 不可為空白。",validateVSpace:"VSpace 必須為數字。",windowMode:"視窗模式",windowModeOpaque:"不透明",windowModeTransparent:"透明",windowModeWindow:"視窗"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/flash/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/flash/plugin.js new file mode 100644 index 0000000..2210185 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/flash/plugin.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function d(a){a=a.attributes;return"application/x-shockwave-flash"==a.type||f.test(a.src||"")}function e(a,b){return a.createFakeParserElement(b,"cke_flash","flash",!0)}var f=/\.swf(?:$|\?)/i;CKEDITOR.plugins.add("flash",{requires:"dialog,fakeobjects",lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",icons:"flash", +hidpi:!0,onLoad:function(){CKEDITOR.addCss("img.cke_flash{background-image: url("+CKEDITOR.getUrl(this.path+"images/placeholder.png")+");background-position: center center;background-repeat: no-repeat;border: 1px solid #a9a9a9;width: 80px;height: 80px;}")},init:function(a){var b="object[classid,codebase,height,hspace,vspace,width];param[name,value];embed[height,hspace,pluginspage,src,type,vspace,width]";CKEDITOR.dialog.isTabEnabled(a,"flash","properties")&&(b+=";object[align]; embed[allowscriptaccess,quality,scale,wmode]"); +CKEDITOR.dialog.isTabEnabled(a,"flash","advanced")&&(b+=";object[id]{*}; embed[bgcolor]{*}(*)");a.addCommand("flash",new CKEDITOR.dialogCommand("flash",{allowedContent:b,requiredContent:"embed"}));a.ui.addButton&&a.ui.addButton("Flash",{label:a.lang.common.flash,command:"flash",toolbar:"insert,20"});CKEDITOR.dialog.add("flash",this.path+"dialogs/flash.js");a.addMenuItems&&a.addMenuItems({flash:{label:a.lang.flash.properties,command:"flash",group:"flash"}});a.on("doubleclick",function(a){var b=a.data.element; +b.is("img")&&"flash"==b.data("cke-real-element-type")&&(a.data.dialog="flash")});a.contextMenu&&a.contextMenu.addListener(function(a){if(a&&a.is("img")&&!a.isReadOnly()&&"flash"==a.data("cke-real-element-type"))return{flash:CKEDITOR.TRISTATE_OFF}})},afterInit:function(a){var b=a.dataProcessor;(b=b&&b.dataFilter)&&b.addRules({elements:{"cke:object":function(b){var c=b.attributes;if((!c.classid||!(""+c.classid).toLowerCase())&&!d(b)){for(c=0;c<b.children.length;c++)if("cke:embed"==b.children[c].name){if(!d(b.children[c]))break; +return e(a,b)}return null}return e(a,b)},"cke:embed":function(b){return!d(b)?null:e(a,b)}}},5)}})})();CKEDITOR.tools.extend(CKEDITOR.config,{flashEmbedTagOnly:!1,flashAddEmbedTag:!0,flashConvertOnEdit:!1}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/af.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/af.js new file mode 100644 index 0000000..cc49cf7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/af.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'af', { + fontSize: { + label: 'Grootte', + voiceLabel: 'Fontgrootte', + panelTitle: 'Fontgrootte' + }, + label: 'Font', + panelTitle: 'Fontnaam', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ar.js new file mode 100644 index 0000000..96de018 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ar.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ar', { + fontSize: { + label: 'حجم الخط', + voiceLabel: 'حجم الخط', + panelTitle: 'حجم الخط' + }, + label: 'خط', + panelTitle: 'حجم الخط', + voiceLabel: 'حجم الخط' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/bg.js new file mode 100644 index 0000000..9c8384d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/bg.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'bg', { + fontSize: { + label: 'Размер', + voiceLabel: 'Размер на шрифт', + panelTitle: 'Размер на шрифт' + }, + label: 'Шрифт', + panelTitle: 'Име на шрифт', + voiceLabel: 'Шрифт' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/bn.js new file mode 100644 index 0000000..ed921ad --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/bn.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'bn', { + fontSize: { + label: 'সাইজ', + voiceLabel: 'Font Size', + panelTitle: 'সাইজ' + }, + label: 'ফন্ট', + panelTitle: 'ফন্ট', + voiceLabel: 'ফন্ট' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/bs.js new file mode 100644 index 0000000..76d75e1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/bs.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'bs', { + fontSize: { + label: 'Velièina', + voiceLabel: 'Font Size', + panelTitle: 'Velièina' + }, + label: 'Font', + panelTitle: 'Font', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ca.js new file mode 100644 index 0000000..89ae155 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ca.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ca', { + fontSize: { + label: 'Mida', + voiceLabel: 'Mida de la lletra', + panelTitle: 'Mida de la lletra' + }, + label: 'Tipus de lletra', + panelTitle: 'Tipus de lletra', + voiceLabel: 'Tipus de lletra' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/cs.js new file mode 100644 index 0000000..55f0f55 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/cs.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'cs', { + fontSize: { + label: 'Velikost', + voiceLabel: 'Velikost písma', + panelTitle: 'Velikost' + }, + label: 'Písmo', + panelTitle: 'Písmo', + voiceLabel: 'Písmo' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/cy.js new file mode 100644 index 0000000..207e36b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/cy.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'cy', { + fontSize: { + label: 'Maint', + voiceLabel: 'Maint y Ffont', + panelTitle: 'Maint y Ffont' + }, + label: 'Ffont', + panelTitle: 'Enw\'r Ffont', + voiceLabel: 'Ffont' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/da.js new file mode 100644 index 0000000..703ffb4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/da.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'da', { + fontSize: { + label: 'Skriftstørrelse', + voiceLabel: 'Skriftstørrelse', + panelTitle: 'Skriftstørrelse' + }, + label: 'Skrifttype', + panelTitle: 'Skrifttype', + voiceLabel: 'Skrifttype' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/de.js new file mode 100644 index 0000000..ec860fc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/de.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'de', { + fontSize: { + label: 'Größe', + voiceLabel: 'Schrifgröße', + panelTitle: 'Schriftgröße' + }, + label: 'Schriftart', + panelTitle: 'Schriftartname', + voiceLabel: 'Schriftart' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/el.js new file mode 100644 index 0000000..b29e98b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/el.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'el', { + fontSize: { + label: 'Μέγεθος', + voiceLabel: 'Μέγεθος Γραμματοσειράς', + panelTitle: 'Μέγεθος Γραμματοσειράς' + }, + label: 'Γραμματοσειρά', + panelTitle: 'Όνομα Γραμματοσειράς', + voiceLabel: 'Γραμματοσειρά' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en-au.js new file mode 100644 index 0000000..69b120e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en-au.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'en-au', { + fontSize: { + label: 'Size', + voiceLabel: 'Font Size', + panelTitle: 'Font Size' + }, + label: 'Font', + panelTitle: 'Font Name', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en-ca.js new file mode 100644 index 0000000..ed3c265 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en-ca.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'en-ca', { + fontSize: { + label: 'Size', + voiceLabel: 'Font Size', + panelTitle: 'Font Size' + }, + label: 'Font', + panelTitle: 'Font Name', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en-gb.js new file mode 100644 index 0000000..1e4b61a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en-gb.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'en-gb', { + fontSize: { + label: 'Size', + voiceLabel: 'Font Size', + panelTitle: 'Font Size' + }, + label: 'Font', + panelTitle: 'Font Name', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en.js new file mode 100644 index 0000000..36ccfd3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/en.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'en', { + fontSize: { + label: 'Size', + voiceLabel: 'Font Size', + panelTitle: 'Font Size' + }, + label: 'Font', + panelTitle: 'Font Name', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/eo.js new file mode 100644 index 0000000..adfaa90 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/eo.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'eo', { + fontSize: { + label: 'Grado', + voiceLabel: 'Tipara grado', + panelTitle: 'Tipara grado' + }, + label: 'Tiparo', + panelTitle: 'Tipara nomo', + voiceLabel: 'Tiparo' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/es.js new file mode 100644 index 0000000..5ae78d2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/es.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'es', { + fontSize: { + label: 'Tamaño', + voiceLabel: 'Tamaño de fuente', + panelTitle: 'Tamaño' + }, + label: 'Fuente', + panelTitle: 'Fuente', + voiceLabel: 'Fuente' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/et.js new file mode 100644 index 0000000..d294fc1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/et.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'et', { + fontSize: { + label: 'Suurus', + voiceLabel: 'Kirja suurus', + panelTitle: 'Suurus' + }, + label: 'Kiri', + panelTitle: 'Kiri', + voiceLabel: 'Kiri' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/eu.js new file mode 100644 index 0000000..af47359 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/eu.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'eu', { + fontSize: { + label: 'Tamaina', + voiceLabel: 'Tamaina', + panelTitle: 'Tamaina' + }, + label: 'Letra-tipoa', + panelTitle: 'Letra-tipoa', + voiceLabel: 'Letra-tipoa' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fa.js new file mode 100644 index 0000000..82d616c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fa.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'fa', { + fontSize: { + label: 'اندازه', + voiceLabel: 'اندازه قلم', + panelTitle: 'اندازه قلم' + }, + label: 'قلم', + panelTitle: 'نام قلم', + voiceLabel: 'قلم' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fi.js new file mode 100644 index 0000000..a9e99e9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fi.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'fi', { + fontSize: { + label: 'Koko', + voiceLabel: 'Kirjaisimen koko', + panelTitle: 'Koko' + }, + label: 'Kirjaisinlaji', + panelTitle: 'Kirjaisinlaji', + voiceLabel: 'Kirjaisinlaji' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fo.js new file mode 100644 index 0000000..949d4f7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fo.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'fo', { + fontSize: { + label: 'Skriftstødd', + voiceLabel: 'Skriftstødd', + panelTitle: 'Skriftstødd' + }, + label: 'Skrift', + panelTitle: 'Skrift', + voiceLabel: 'Skrift' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fr-ca.js new file mode 100644 index 0000000..bee3cb9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fr-ca.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'fr-ca', { + fontSize: { + label: 'Taille', + voiceLabel: 'Taille', + panelTitle: 'Taille' + }, + label: 'Police', + panelTitle: 'Police', + voiceLabel: 'Police' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fr.js new file mode 100644 index 0000000..b055861 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/fr.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'fr', { + fontSize: { + label: 'Taille', + voiceLabel: 'Taille de police', + panelTitle: 'Taille de police' + }, + label: 'Police', + panelTitle: 'Style de police', + voiceLabel: 'Police' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/gl.js new file mode 100644 index 0000000..d8affb7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/gl.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'gl', { + fontSize: { + label: 'Tamaño', + voiceLabel: 'Tamaño da letra', + panelTitle: 'Tamaño da letra' + }, + label: 'Tipo de letra', + panelTitle: 'Nome do tipo de letra', + voiceLabel: 'Tipo de letra' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/gu.js new file mode 100644 index 0000000..6951702 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/gu.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'gu', { + fontSize: { + label: 'ફૉન્ટ સાઇઝ/કદ', + voiceLabel: 'ફોન્ટ સાઈઝ', + panelTitle: 'ફૉન્ટ સાઇઝ/કદ' + }, + label: 'ફૉન્ટ', + panelTitle: 'ફૉન્ટ', + voiceLabel: 'ફોન્ટ' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/he.js new file mode 100644 index 0000000..41b5e79 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/he.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'he', { + fontSize: { + label: 'גודל', + voiceLabel: 'גודל', + panelTitle: 'גודל' + }, + label: 'גופן', + panelTitle: 'גופן', + voiceLabel: 'גופן' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/hi.js new file mode 100644 index 0000000..dd43efa --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/hi.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'hi', { + fontSize: { + label: 'साइज़', + voiceLabel: 'Font Size', + panelTitle: 'साइज़' + }, + label: 'फ़ॉन्ट', + panelTitle: 'फ़ॉन्ट', + voiceLabel: 'फ़ॉन्ट' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/hr.js new file mode 100644 index 0000000..0a10db8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/hr.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'hr', { + fontSize: { + label: 'Veličina', + voiceLabel: 'Veličina slova', + panelTitle: 'Veličina' + }, + label: 'Font', + panelTitle: 'Font', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/hu.js new file mode 100644 index 0000000..3124802 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/hu.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'hu', { + fontSize: { + label: 'Méret', + voiceLabel: 'Betűméret', + panelTitle: 'Méret' + }, + label: 'Betűtípus', + panelTitle: 'Betűtípus', + voiceLabel: 'Betűtípus' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/id.js new file mode 100644 index 0000000..522b6e7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/id.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'id', { + fontSize: { + label: 'Ukuran', + voiceLabel: 'Font Size', // MISSING + panelTitle: 'Font Size' // MISSING + }, + label: 'Font', // MISSING + panelTitle: 'Font Name', // MISSING + voiceLabel: 'Font' // MISSING +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/is.js new file mode 100644 index 0000000..98c7503 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/is.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'is', { + fontSize: { + label: 'Leturstærð ', + voiceLabel: 'Font Size', + panelTitle: 'Leturstærð ' + }, + label: 'Leturgerð ', + panelTitle: 'Leturgerð ', + voiceLabel: 'Leturgerð ' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/it.js new file mode 100644 index 0000000..bc52031 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/it.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'it', { + fontSize: { + label: 'Dimensione', + voiceLabel: 'Dimensione Carattere', + panelTitle: 'Dimensione' + }, + label: 'Carattere', + panelTitle: 'Carattere', + voiceLabel: 'Carattere' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ja.js new file mode 100644 index 0000000..691e1eb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ja.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ja', { + fontSize: { + label: 'サイズ', + voiceLabel: 'フォントサイズ', + panelTitle: 'フォントサイズ' + }, + label: 'フォント', + panelTitle: 'フォント', + voiceLabel: 'フォント' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ka.js new file mode 100644 index 0000000..42c6c3b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ka.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ka', { + fontSize: { + label: 'ზომა', + voiceLabel: 'ტექსტის ზომა', + panelTitle: 'ტექსტის ზომა' + }, + label: 'ფონტი', + panelTitle: 'ფონტის სახელი', + voiceLabel: 'ფონტი' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/km.js new file mode 100644 index 0000000..70efc22 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/km.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'km', { + fontSize: { + label: 'ទំហំ', + voiceLabel: 'ទំហំ​អក្សរ', + panelTitle: 'ទំហំ​អក្សរ' + }, + label: 'ពុម្ព​អក្សរ', + panelTitle: 'ឈ្មោះ​ពុម្ព​អក្សរ', + voiceLabel: 'ពុម្ព​អក្សរ' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ko.js new file mode 100644 index 0000000..1e798e5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ko.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ko', { + fontSize: { + label: '크기', + voiceLabel: '글자 크기', + panelTitle: '글자 크기' + }, + label: '글꼴', + panelTitle: '글꼴', + voiceLabel: '글꼴' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ku.js new file mode 100644 index 0000000..2f50789 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ku.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ku', { + fontSize: { + label: 'گەورەیی', + voiceLabel: 'گەورەیی فۆنت', + panelTitle: 'گەورەیی فۆنت' + }, + label: 'فۆنت', + panelTitle: 'ناوی فۆنت', + voiceLabel: 'فۆنت' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/lt.js new file mode 100644 index 0000000..5a27b20 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/lt.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'lt', { + fontSize: { + label: 'Šrifto dydis', + voiceLabel: 'Šrifto dydis', + panelTitle: 'Šrifto dydis' + }, + label: 'Šriftas', + panelTitle: 'Šriftas', + voiceLabel: 'Šriftas' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/lv.js new file mode 100644 index 0000000..98a27e3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/lv.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'lv', { + fontSize: { + label: 'Izmērs', + voiceLabel: 'Fonta izmeŗs', + panelTitle: 'Izmērs' + }, + label: 'Šrifts', + panelTitle: 'Šrifts', + voiceLabel: 'Fonts' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/mk.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/mk.js new file mode 100644 index 0000000..b0c1336 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/mk.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'mk', { + fontSize: { + label: 'Size', + voiceLabel: 'Font Size', + panelTitle: 'Font Size' + }, + label: 'Font', // MISSING + panelTitle: 'Font Name', // MISSING + voiceLabel: 'Font' // MISSING +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/mn.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/mn.js new file mode 100644 index 0000000..ffc555b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/mn.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'mn', { + fontSize: { + label: 'Хэмжээ', + voiceLabel: 'Үсгийн хэмжээ', + panelTitle: 'Үсгийн хэмжээ' + }, + label: 'Үсгийн хэлбэр', + panelTitle: 'Үгсийн хэлбэрийн нэр', + voiceLabel: 'Үгсийн хэлбэр' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ms.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ms.js new file mode 100644 index 0000000..29a3043 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ms.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ms', { + fontSize: { + label: 'Saiz', + voiceLabel: 'Font Size', + panelTitle: 'Saiz' + }, + label: 'Font', + panelTitle: 'Font', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/nb.js new file mode 100644 index 0000000..6a79c0f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/nb.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'nb', { + fontSize: { + label: 'Størrelse', + voiceLabel: 'Skriftstørrelse', + panelTitle: 'Skriftstørrelse' + }, + label: 'Skrift', + panelTitle: 'Skrift', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/nl.js new file mode 100644 index 0000000..7309f23 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/nl.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'nl', { + fontSize: { + label: 'Lettergrootte', + voiceLabel: 'Lettergrootte', + panelTitle: 'Lettergrootte' + }, + label: 'Lettertype', + panelTitle: 'Lettertype', + voiceLabel: 'Lettertype' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/no.js new file mode 100644 index 0000000..08136b0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/no.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'no', { + fontSize: { + label: 'Størrelse', + voiceLabel: 'Font Størrelse', + panelTitle: 'Størrelse' + }, + label: 'Skrift', + panelTitle: 'Skrift', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/pl.js new file mode 100644 index 0000000..29beaa8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/pl.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'pl', { + fontSize: { + label: 'Rozmiar', + voiceLabel: 'Rozmiar czcionki', + panelTitle: 'Rozmiar' + }, + label: 'Czcionka', + panelTitle: 'Czcionka', + voiceLabel: 'Czcionka' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/pt-br.js new file mode 100644 index 0000000..3d1e055 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/pt-br.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'pt-br', { + fontSize: { + label: 'Tamanho', + voiceLabel: 'Tamanho da fonte', + panelTitle: 'Tamanho' + }, + label: 'Fonte', + panelTitle: 'Fonte', + voiceLabel: 'Fonte' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/pt.js new file mode 100644 index 0000000..baf1512 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/pt.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'pt', { + fontSize: { + label: 'Tamanho', + voiceLabel: 'Tamanho da letra', + panelTitle: 'Tamanho da letra' + }, + label: 'Fonte', + panelTitle: 'Nome do Tipo de Letra', + voiceLabel: 'Tipo de Letra' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ro.js new file mode 100644 index 0000000..9a899b7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ro.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ro', { + fontSize: { + label: 'Mărime', + voiceLabel: 'Font Size', + panelTitle: 'Mărime' + }, + label: 'Font', + panelTitle: 'Font', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ru.js new file mode 100644 index 0000000..b917cab --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ru.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ru', { + fontSize: { + label: 'Размер', + voiceLabel: 'Размер шрифта', + panelTitle: 'Размер шрифта' + }, + label: 'Шрифт', + panelTitle: 'Шрифт', + voiceLabel: 'Шрифт' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/si.js new file mode 100644 index 0000000..43ba694 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/si.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'si', { + fontSize: { + label: 'විශාලත්වය', + voiceLabel: 'අක්ෂර විශාලත්වය', + panelTitle: 'අක්ෂර විශාලත්වය' + }, + label: 'අක්ෂරය', + panelTitle: 'අක්ෂර නාමය', + voiceLabel: 'අක්ෂර' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sk.js new file mode 100644 index 0000000..84c43cc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sk.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'sk', { + fontSize: { + label: 'Veľkosť', + voiceLabel: 'Veľkosť písma', + panelTitle: 'Veľkosť písma' + }, + label: 'Font', + panelTitle: 'Názov fontu', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sl.js new file mode 100644 index 0000000..f15fcca --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sl.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'sl', { + fontSize: { + label: 'Velikost', + voiceLabel: 'Velikost', + panelTitle: 'Velikost' + }, + label: 'Pisava', + panelTitle: 'Pisava', + voiceLabel: 'Pisava' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sq.js new file mode 100644 index 0000000..3f753c6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sq.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'sq', { + fontSize: { + label: 'Madhësia', + voiceLabel: 'Madhësia e Shkronjës', + panelTitle: 'Madhësia e Shkronjës' + }, + label: 'Shkronja', + panelTitle: 'Emri i Shkronjës', + voiceLabel: 'Shkronja' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sr-latn.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sr-latn.js new file mode 100644 index 0000000..82c0873 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sr-latn.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'sr-latn', { + fontSize: { + label: 'Veličina fonta', + voiceLabel: 'Font Size', + panelTitle: 'Veličina fonta' + }, + label: 'Font', + panelTitle: 'Font', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sr.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sr.js new file mode 100644 index 0000000..59db4b2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sr.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'sr', { + fontSize: { + label: 'Величина фонта', + voiceLabel: 'Font Size', + panelTitle: 'Величина фонта' + }, + label: 'Фонт', + panelTitle: 'Фонт', + voiceLabel: 'Фонт' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sv.js new file mode 100644 index 0000000..ac80380 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/sv.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'sv', { + fontSize: { + label: 'Storlek', + voiceLabel: 'Teckenstorlek', + panelTitle: 'Teckenstorlek' + }, + label: 'Typsnitt', + panelTitle: 'Typsnitt', + voiceLabel: 'Typsnitt' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/th.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/th.js new file mode 100644 index 0000000..1fc444d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/th.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'th', { + fontSize: { + label: 'ขนาด', + voiceLabel: 'Font Size', + panelTitle: 'ขนาด' + }, + label: 'แบบอักษร', + panelTitle: 'แบบอักษร', + voiceLabel: 'แบบอักษร' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/tr.js new file mode 100644 index 0000000..ab95173 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/tr.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'tr', { + fontSize: { + label: 'Boyut', + voiceLabel: 'Font Size', + panelTitle: 'Boyut' + }, + label: 'Yazı Türü', + panelTitle: 'Yazı Türü', + voiceLabel: 'Font' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/tt.js new file mode 100644 index 0000000..b0e4450 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/tt.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'tt', { + fontSize: { + label: 'Зурлык', + voiceLabel: 'Шрифт зурлыклары', + panelTitle: 'Шрифт зурлыклары' + }, + label: 'Шрифт', + panelTitle: 'Шрифт исеме', + voiceLabel: 'Шрифт' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ug.js new file mode 100644 index 0000000..63a8838 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/ug.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'ug', { + fontSize: { + label: 'چوڭلۇقى', + voiceLabel: 'خەت چوڭلۇقى', + panelTitle: 'چوڭلۇقى' + }, + label: 'خەت نۇسخا', + panelTitle: 'خەت نۇسخا', + voiceLabel: 'خەت نۇسخا' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/uk.js new file mode 100644 index 0000000..4a364ad --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/uk.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'uk', { + fontSize: { + label: 'Розмір', + voiceLabel: 'Розмір шрифту', + panelTitle: 'Розмір' + }, + label: 'Шрифт', + panelTitle: 'Шрифт', + voiceLabel: 'Шрифт' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/vi.js new file mode 100644 index 0000000..8f2b16a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/vi.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'vi', { + fontSize: { + label: 'Cỡ chữ', + voiceLabel: 'Kích cỡ phông', + panelTitle: 'Cỡ chữ' + }, + label: 'Phông', + panelTitle: 'Phông', + voiceLabel: 'Phông' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/zh-cn.js new file mode 100644 index 0000000..04cd3d3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/zh-cn.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'zh-cn', { + fontSize: { + label: '大小', + voiceLabel: '文字大小', + panelTitle: '大小' + }, + label: '字体', + panelTitle: '字体', + voiceLabel: '字体' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/zh.js new file mode 100644 index 0000000..a8f7d9e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/lang/zh.js @@ -0,0 +1,14 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'font', 'zh', { + fontSize: { + label: '大小', + voiceLabel: '字型大小', + panelTitle: '字型大小' + }, + label: '字型', + panelTitle: '字型名稱', + voiceLabel: '字型' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/font/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/font/plugin.js new file mode 100644 index 0000000..af817d8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/font/plugin.js @@ -0,0 +1,313 @@ +/** + * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +( function() { + function addCombo( editor, comboName, styleType, lang, entries, defaultLabel, styleDefinition, order ) { + var config = editor.config, + style = new CKEDITOR.style( styleDefinition ); + + // Gets the list of fonts from the settings. + var names = entries.split( ';' ), + values = []; + + // Create style objects for all fonts. + var styles = {}; + for ( var i = 0; i < names.length; i++ ) { + var parts = names[ i ]; + + if ( parts ) { + parts = parts.split( '/' ); + + var vars = {}, + name = names[ i ] = parts[ 0 ]; + + vars[ styleType ] = values[ i ] = parts[ 1 ] || name; + + styles[ name ] = new CKEDITOR.style( styleDefinition, vars ); + styles[ name ]._.definition.name = name; + } else { + names.splice( i--, 1 ); + } + } + + editor.ui.addRichCombo( comboName, { + label: lang.label, + title: lang.panelTitle, + toolbar: 'styles,' + order, + allowedContent: style, + requiredContent: style, + + panel: { + css: [ CKEDITOR.skin.getPath( 'editor' ) ].concat( config.contentsCss ), + multiSelect: false, + attributes: { 'aria-label': lang.panelTitle } + }, + + init: function() { + this.startGroup( lang.panelTitle ); + + for ( var i = 0; i < names.length; i++ ) { + var name = names[ i ]; + + // Add the tag entry to the panel list. + this.add( name, styles[ name ].buildPreview(), name ); + } + }, + + onClick: function( value ) { + editor.focus(); + editor.fire( 'saveSnapshot' ); + + var previousValue = this.getValue(), + style = styles[ value ]; + + // When applying one style over another, first remove the previous one (#12403). + // NOTE: This is only a temporary fix. It will be moved to the styles system (#12687). + if ( previousValue && value != previousValue ) { + var previousStyle = styles[ previousValue ], + range = editor.getSelection().getRanges()[ 0 ]; + + // If the range is collapsed we can't simply use the editor.removeStyle method + // because it will remove the entire element and we want to split it instead. + if ( range.collapsed ) { + var path = editor.elementPath(), + // Find the style element. + matching = path.contains( function( el ) { + return previousStyle.checkElementRemovable( el ); + } ); + + if ( matching ) { + var startBoundary = range.checkBoundaryOfElement( matching, CKEDITOR.START ), + endBoundary = range.checkBoundaryOfElement( matching, CKEDITOR.END ), + node, bm; + + // If we are at both boundaries it means that the element is empty. + // Remove it but in a way that we won't lose other empty inline elements inside it. + // Example: <p>x<span style="font-size:48px"><em>[]</em></span>x</p> + // Result: <p>x<em>[]</em>x</p> + if ( startBoundary && endBoundary ) { + bm = range.createBookmark(); + // Replace the element with its children (TODO element.replaceWithChildren). + while ( ( node = matching.getFirst() ) ) { + node.insertBefore( matching ); + } + matching.remove(); + range.moveToBookmark( bm ); + + // If we are at the boundary of the style element, just move out. + } else if ( startBoundary ) { + range.moveToPosition( matching, CKEDITOR.POSITION_BEFORE_START ); + } else if ( endBoundary ) { + range.moveToPosition( matching, CKEDITOR.POSITION_AFTER_END ); + } else { + // Split the element and clone the elements that were in the path + // (between the startContainer and the matching element) + // into the new place. + range.splitElement( matching ); + range.moveToPosition( matching, CKEDITOR.POSITION_AFTER_END ); + cloneSubtreeIntoRange( range, path.elements.slice(), matching ); + } + + editor.getSelection().selectRanges( [ range ] ); + } + } else { + editor.removeStyle( previousStyle ); + } + } + + editor[ previousValue == value ? 'removeStyle' : 'applyStyle' ]( style ); + + editor.fire( 'saveSnapshot' ); + }, + + onRender: function() { + editor.on( 'selectionChange', function( ev ) { + var currentValue = this.getValue(); + + var elementPath = ev.data.path, + elements = elementPath.elements; + + // For each element into the elements path. + for ( var i = 0, element; i < elements.length; i++ ) { + element = elements[ i ]; + + // Check if the element is removable by any of + // the styles. + for ( var value in styles ) { + if ( styles[ value ].checkElementMatch( element, true, editor ) ) { + if ( value != currentValue ) + this.setValue( value ); + return; + } + } + } + + // If no styles match, just empty it. + this.setValue( '', defaultLabel ); + }, this ); + }, + + refresh: function() { + if ( !editor.activeFilter.check( style ) ) + this.setState( CKEDITOR.TRISTATE_DISABLED ); + } + } ); + } + + // Clones the subtree between subtreeStart (exclusive) and the + // leaf (inclusive) and inserts it into the range. + // + // @param range + // @param {CKEDITOR.dom.element[]} elements Elements path in the standard order: leaf -> root. + // @param {CKEDITOR.dom.element/null} substreeStart The start of the subtree. + // If null, then the leaf belongs to the subtree. + function cloneSubtreeIntoRange( range, elements, subtreeStart ) { + var current = elements.pop(); + if ( !current ) { + return; + } + // Rewind the elements array up to the subtreeStart and then start the real cloning. + if ( subtreeStart ) { + return cloneSubtreeIntoRange( range, elements, current.equals( subtreeStart ) ? null : subtreeStart ); + } + + var clone = current.clone(); + range.insertNode( clone ); + range.moveToPosition( clone, CKEDITOR.POSITION_AFTER_START ); + + cloneSubtreeIntoRange( range, elements ); + } + + CKEDITOR.plugins.add( 'font', { + requires: 'richcombo', + // jscs:disable maximumLineLength + lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE% + // jscs:enable maximumLineLength + init: function( editor ) { + var config = editor.config; + + addCombo( editor, 'Font', 'family', editor.lang.font, config.font_names, config.font_defaultLabel, config.font_style, 30 ); + addCombo( editor, 'FontSize', 'size', editor.lang.font.fontSize, config.fontSize_sizes, config.fontSize_defaultLabel, config.fontSize_style, 40 ); + } + } ); +} )(); + +/** + * The list of fonts names to be displayed in the Font combo in the toolbar. + * Entries are separated by semi-colons (`';'`), while it's possible to have more + * than one font for each entry, in the HTML way (separated by comma). + * + * A display name may be optionally defined by prefixing the entries with the + * name and the slash character. For example, `'Arial/Arial, Helvetica, sans-serif'` + * will be displayed as `'Arial'` in the list, but will be outputted as + * `'Arial, Helvetica, sans-serif'`. + * + * config.font_names = + * 'Arial/Arial, Helvetica, sans-serif;' + + * 'Times New Roman/Times New Roman, Times, serif;' + + * 'Verdana'; + * + * config.font_names = 'Arial;Times New Roman;Verdana'; + * + * @cfg {String} [font_names=see source] + * @member CKEDITOR.config + */ +CKEDITOR.config.font_names = 'Arial/Arial, Helvetica, sans-serif;' + + 'Comic Sans MS/Comic Sans MS, cursive;' + + 'Courier New/Courier New, Courier, monospace;' + + 'Georgia/Georgia, serif;' + + 'Lucida Sans Unicode/Lucida Sans Unicode, Lucida Grande, sans-serif;' + + 'Tahoma/Tahoma, Geneva, sans-serif;' + + 'Times New Roman/Times New Roman, Times, serif;' + + 'Trebuchet MS/Trebuchet MS, Helvetica, sans-serif;' + + 'Verdana/Verdana, Geneva, sans-serif'; + +/** + * The text to be displayed in the Font combo is none of the available values + * matches the current cursor position or text selection. + * + * // If the default site font is Arial, we may making it more explicit to the end user. + * config.font_defaultLabel = 'Arial'; + * + * @cfg {String} [font_defaultLabel=''] + * @member CKEDITOR.config + */ +CKEDITOR.config.font_defaultLabel = ''; + +/** + * The style definition to be used to apply the font in the text. + * + * // This is actually the default value for it. + * config.font_style = { + * element: 'span', + * styles: { 'font-family': '#(family)' }, + * overrides: [ { element: 'font', attributes: { 'face': null } } ] + * }; + * + * @cfg {Object} [font_style=see example] + * @member CKEDITOR.config + */ +CKEDITOR.config.font_style = { + element: 'span', + styles: { 'font-family': '#(family)' }, + overrides: [ { + element: 'font', attributes: { 'face': null } + } ] +}; + +/** + * The list of fonts size to be displayed in the Font Size combo in the + * toolbar. Entries are separated by semi-colons (`';'`). + * + * Any kind of "CSS like" size can be used, like `'12px'`, `'2.3em'`, `'130%'`, + * `'larger'` or `'x-small'`. + * + * A display name may be optionally defined by prefixing the entries with the + * name and the slash character. For example, `'Bigger Font/14px'` will be + * displayed as `'Bigger Font'` in the list, but will be outputted as `'14px'`. + * + * config.fontSize_sizes = '16/16px;24/24px;48/48px;'; + * + * config.fontSize_sizes = '12px;2.3em;130%;larger;x-small'; + * + * config.fontSize_sizes = '12 Pixels/12px;Big/2.3em;30 Percent More/130%;Bigger/larger;Very Small/x-small'; + * + * @cfg {String} [fontSize_sizes=see source] + * @member CKEDITOR.config + */ +CKEDITOR.config.fontSize_sizes = '8/8px;9/9px;10/10px;11/11px;12/12px;14/14px;16/16px;18/18px;20/20px;22/22px;24/24px;26/26px;28/28px;36/36px;48/48px;72/72px'; + +/** + * The text to be displayed in the Font Size combo is none of the available + * values matches the current cursor position or text selection. + * + * // If the default site font size is 12px, we may making it more explicit to the end user. + * config.fontSize_defaultLabel = '12px'; + * + * @cfg {String} [fontSize_defaultLabel=''] + * @member CKEDITOR.config + */ +CKEDITOR.config.fontSize_defaultLabel = ''; + +/** + * The style definition to be used to apply the font size in the text. + * + * // This is actually the default value for it. + * config.fontSize_style = { + * element: 'span', + * styles: { 'font-size': '#(size)' }, + * overrides: [ { element :'font', attributes: { 'size': null } } ] + * }; + * + * @cfg {Object} [fontSize_style=see example] + * @member CKEDITOR.config + */ +CKEDITOR.config.fontSize_style = { + element: 'span', + styles: { 'font-size': '#(size)' }, + overrides: [ { + element: 'font', attributes: { 'size': null } + } ] +}; diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/button.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/button.js new file mode 100644 index 0000000..f43007e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/button.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("button",function(b){function d(a){var b=this.getValue();b?(a.attributes[this.id]=b,"name"==this.id&&(a.attributes["data-cke-saved-name"]=b)):(delete a.attributes[this.id],"name"==this.id&&delete a.attributes["data-cke-saved-name"])}return{title:b.lang.forms.button.title,minWidth:350,minHeight:150,onShow:function(){delete this.button;var a=this.getParentEditor().getSelection().getSelectedElement();a&&a.is("input")&&a.getAttribute("type")in{button:1,reset:1,submit:1}&&(this.button= +a,this.setupContent(a))},onOk:function(){var a=this.getParentEditor(),b=this.button,d=!b,c=b?CKEDITOR.htmlParser.fragment.fromHtml(b.getOuterHtml()).children[0]:new CKEDITOR.htmlParser.element("input");this.commitContent(c);var e=new CKEDITOR.htmlParser.basicWriter;c.writeHtml(e);c=CKEDITOR.dom.element.createFromHtml(e.getHtml(),a.document);d?a.insertElement(c):(c.replace(b),a.getSelection().selectElement(c))},contents:[{id:"info",label:b.lang.forms.button.title,title:b.lang.forms.button.title,elements:[{id:"name", +type:"text",bidi:!0,label:b.lang.common.name,"default":"",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:d},{id:"value",type:"text",label:b.lang.forms.button.text,accessKey:"V","default":"",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:d},{id:"type",type:"select",label:b.lang.forms.button.type,"default":"button",accessKey:"T",items:[[b.lang.forms.button.typeBtn,"button"],[b.lang.forms.button.typeSbm,"submit"],[b.lang.forms.button.typeRst, +"reset"]],setup:function(a){this.setValue(a.getAttribute("type")||"")},commit:d}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/checkbox.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/checkbox.js new file mode 100644 index 0000000..3103a43 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/checkbox.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("checkbox",function(d){return{title:d.lang.forms.checkboxAndRadio.checkboxTitle,minWidth:350,minHeight:140,onShow:function(){delete this.checkbox;var a=this.getParentEditor().getSelection().getSelectedElement();a&&"checkbox"==a.getAttribute("type")&&(this.checkbox=a,this.setupContent(a))},onOk:function(){var a,b=this.checkbox;b||(a=this.getParentEditor(),b=a.document.createElement("input"),b.setAttribute("type","checkbox"),a.insertElement(b));this.commitContent({element:b})},contents:[{id:"info", +label:d.lang.forms.checkboxAndRadio.checkboxTitle,title:d.lang.forms.checkboxAndRadio.checkboxTitle,startupFocus:"txtName",elements:[{id:"txtName",type:"text",label:d.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){a=a.element;this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"txtValue",type:"text",label:d.lang.forms.checkboxAndRadio.value, +"default":"",accessKey:"V",setup:function(a){a=a.getAttribute("value");this.setValue(CKEDITOR.env.ie&&"on"==a?"":a)},commit:function(a){var b=a.element,c=this.getValue();c&&!(CKEDITOR.env.ie&&"on"==c)?b.setAttribute("value",c):CKEDITOR.env.ie?(c=new CKEDITOR.dom.element("input",b.getDocument()),b.copyAttributes(c,{value:1}),c.replace(b),d.getSelection().selectElement(c),a.element=c):b.removeAttribute("value")}},{id:"cmbSelected",type:"checkbox",label:d.lang.forms.checkboxAndRadio.selected,"default":"", +accessKey:"S",value:"checked",setup:function(a){this.setValue(a.getAttribute("checked"))},commit:function(a){var b=a.element;if(CKEDITOR.env.ie){var c=!!b.getAttribute("checked"),e=!!this.getValue();c!=e&&(c=CKEDITOR.dom.element.createFromHtml('<input type="checkbox"'+(e?' checked="checked"':"")+"/>",d.document),b.copyAttributes(c,{type:1,checked:1}),c.replace(b),d.getSelection().selectElement(c),a.element=c)}else this.getValue()?b.setAttribute("checked","checked"):b.removeAttribute("checked")}}, +{id:"required",type:"checkbox",label:d.lang.forms.checkboxAndRadio.required,"default":"",accessKey:"Q",value:"required",setup:function(a){this.setValue(a.getAttribute("required"))},commit:function(a){a=a.element;this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/form.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/form.js new file mode 100644 index 0000000..f48a84f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/form.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("form",function(a){var d={action:1,id:1,method:1,enctype:1,target:1};return{title:a.lang.forms.form.title,minWidth:350,minHeight:200,onShow:function(){delete this.form;var b=this.getParentEditor().elementPath().contains("form",1);b&&(this.form=b,this.setupContent(b))},onOk:function(){var b,a=this.form,c=!a;c&&(b=this.getParentEditor(),a=b.document.createElement("form"),a.appendBogus());c&&b.insertElement(a);this.commitContent(a)},onLoad:function(){function a(b){this.setValue(b.getAttribute(this.id)|| +"")}function e(a){this.getValue()?a.setAttribute(this.id,this.getValue()):a.removeAttribute(this.id)}this.foreach(function(c){d[c.id]&&(c.setup=a,c.commit=e)})},contents:[{id:"info",label:a.lang.forms.form.title,title:a.lang.forms.form.title,elements:[{id:"txtName",bidi:!0,type:"text",label:a.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.data("cke-saved-name",this.getValue()): +(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"action",type:"text",label:a.lang.forms.form.action,"default":"",accessKey:"T"},{type:"hbox",widths:["45%","55%"],children:[{id:"id",type:"text",label:a.lang.common.id,"default":"",accessKey:"I"},{id:"enctype",type:"select",label:a.lang.forms.form.encoding,style:"width:100%",accessKey:"E","default":"",items:[[""],["text/plain"],["multipart/form-data"],["application/x-www-form-urlencoded"]]}]},{type:"hbox",widths:["45%","55%"],children:[{id:"target", +type:"select",label:a.lang.common.target,style:"width:100%",accessKey:"M","default":"",items:[[a.lang.common.notSet,""],[a.lang.common.targetNew,"_blank"],[a.lang.common.targetTop,"_top"],[a.lang.common.targetSelf,"_self"],[a.lang.common.targetParent,"_parent"]]},{id:"method",type:"select",label:a.lang.forms.form.method,accessKey:"M","default":"GET",items:[["GET","get"],["POST","post"]]}]}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/hiddenfield.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/hiddenfield.js new file mode 100644 index 0000000..1aa4b26 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/hiddenfield.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("hiddenfield",function(d){return{title:d.lang.forms.hidden.title,hiddenField:null,minWidth:350,minHeight:110,onShow:function(){delete this.hiddenField;var a=this.getParentEditor(),b=a.getSelection(),c=b.getSelectedElement();c&&(c.data("cke-real-element-type")&&"hiddenfield"==c.data("cke-real-element-type"))&&(this.hiddenField=c,c=a.restoreRealElement(this.hiddenField),this.setupContent(c),b.selectElement(this.hiddenField))},onOk:function(){var a=this.getValueOf("info","_cke_saved_name"), +b=this.getParentEditor(),a=CKEDITOR.env.ie&&8>CKEDITOR.document.$.documentMode?b.document.createElement('<input name="'+CKEDITOR.tools.htmlEncode(a)+'">'):b.document.createElement("input");a.setAttribute("type","hidden");this.commitContent(a);a=b.createFakeElement(a,"cke_hidden","hiddenfield");this.hiddenField?(a.replace(this.hiddenField),b.getSelection().selectElement(a)):b.insertElement(a);return!0},contents:[{id:"info",label:d.lang.forms.hidden.title,title:d.lang.forms.hidden.title,elements:[{id:"_cke_saved_name", +type:"text",label:d.lang.forms.hidden.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.setAttribute("name",this.getValue()):a.removeAttribute("name")}},{id:"value",type:"text",label:d.lang.forms.hidden.value,"default":"",accessKey:"V",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:function(a){this.getValue()?a.setAttribute("value",this.getValue()):a.removeAttribute("value")}}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/radio.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/radio.js new file mode 100644 index 0000000..68401e8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/radio.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("radio",function(b){return{title:b.lang.forms.checkboxAndRadio.radioTitle,minWidth:350,minHeight:140,onShow:function(){delete this.radioButton;var a=this.getParentEditor().getSelection().getSelectedElement();a&&("input"==a.getName()&&"radio"==a.getAttribute("type"))&&(this.radioButton=a,this.setupContent(a))},onOk:function(){var a,c=this.radioButton,b=!c;b&&(a=this.getParentEditor(),c=a.document.createElement("input"),c.setAttribute("type","radio"));b&&a.insertElement(c);this.commitContent({element:c})}, +contents:[{id:"info",label:b.lang.forms.checkboxAndRadio.radioTitle,title:b.lang.forms.checkboxAndRadio.radioTitle,elements:[{id:"name",type:"text",label:b.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){a=a.element;this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"value",type:"text",label:b.lang.forms.checkboxAndRadio.value,"default":"", +accessKey:"V",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:function(a){a=a.element;this.getValue()?a.setAttribute("value",this.getValue()):a.removeAttribute("value")}},{id:"checked",type:"checkbox",label:b.lang.forms.checkboxAndRadio.selected,"default":"",accessKey:"S",value:"checked",setup:function(a){this.setValue(a.getAttribute("checked"))},commit:function(a){var c=a.element;if(CKEDITOR.env.ie){var d=c.getAttribute("checked"),e=!!this.getValue();d!=e&&(d=CKEDITOR.dom.element.createFromHtml('<input type="radio"'+ +(e?' checked="checked"':"")+"></input>",b.document),c.copyAttributes(d,{type:1,checked:1}),d.replace(c),b.getSelection().selectElement(d),a.element=d)}else this.getValue()?c.setAttribute("checked","checked"):c.removeAttribute("checked")}},{id:"required",type:"checkbox",label:b.lang.forms.checkboxAndRadio.required,"default":"",accessKey:"Q",value:"required",setup:function(a){this.setValue(a.getAttribute("required"))},commit:function(a){a=a.element;this.getValue()?a.setAttribute("required","required"): +a.removeAttribute("required")}}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/select.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/select.js new file mode 100644 index 0000000..32d7d5d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/select.js @@ -0,0 +1,20 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("select",function(c){function h(a,b,e,d,c){a=f(a);d=d?d.createElement("OPTION"):document.createElement("OPTION");if(a&&d&&"option"==d.getName())CKEDITOR.env.ie?(isNaN(parseInt(c,10))?a.$.options.add(d.$):a.$.options.add(d.$,c),d.$.innerHTML=0<b.length?b:"",d.$.value=e):(null!==c&&c<a.getChildCount()?a.getChild(0>c?0:c).insertBeforeMe(d):a.append(d),d.setText(0<b.length?b:""),d.setValue(e));else return!1;return d}function m(a){for(var a=f(a),b=g(a),e=a.getChildren().count()-1;0<= +e;e--)a.getChild(e).$.selected&&a.getChild(e).remove();i(a,b)}function n(a,b,e,d){a=f(a);if(0>b)return!1;a=a.getChild(b);a.setText(e);a.setValue(d);return a}function k(a){for(a=f(a);a.getChild(0)&&a.getChild(0).remove(););}function j(a,b,e){var a=f(a),d=g(a);if(0>d)return!1;b=d+b;b=0>b?0:b;b=b>=a.getChildCount()?a.getChildCount()-1:b;if(d==b)return!1;var d=a.getChild(d),c=d.getText(),o=d.getValue();d.remove();d=h(a,c,o,!e?null:e,b);i(a,b);return d}function g(a){return(a=f(a))?a.$.selectedIndex:-1} +function i(a,b){a=f(a);if(0>b)return null;var e=a.getChildren().count();a.$.selectedIndex=b>=e?e-1:b;return a}function l(a){return(a=f(a))?a.getChildren():!1}function f(a){return a&&a.domId&&a.getInputElement().$?a.getInputElement():a&&a.$?a:!1}return{title:c.lang.forms.select.title,minWidth:CKEDITOR.env.ie?460:395,minHeight:CKEDITOR.env.ie?320:300,onShow:function(){delete this.selectBox;this.setupContent("clear");var a=this.getParentEditor().getSelection().getSelectedElement();if(a&&"select"==a.getName()){this.selectBox= +a;this.setupContent(a.getName(),a);for(var a=l(a),b=0;b<a.count();b++)this.setupContent("option",a.getItem(b))}},onOk:function(){var a=this.getParentEditor(),b=this.selectBox,e=!b;e&&(b=a.document.createElement("select"));this.commitContent(b);if(e&&(a.insertElement(b),CKEDITOR.env.ie)){var d=a.getSelection(),c=d.createBookmarks();setTimeout(function(){d.selectBookmarks(c)},0)}},contents:[{id:"info",label:c.lang.forms.select.selectInfo,title:c.lang.forms.select.selectInfo,accessKey:"",elements:[{id:"txtName", +type:"text",widths:["25%","75%"],labelLayout:"horizontal",label:c.lang.common.name,"default":"",accessKey:"N",style:"width:350px",setup:function(a,b){"clear"==a?this.setValue(this["default"]||""):"select"==a&&this.setValue(b.data("cke-saved-name")||b.getAttribute("name")||"")},commit:function(a){this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"txtValue",type:"text",widths:["25%","75%"],labelLayout:"horizontal",label:c.lang.forms.select.value, +style:"width:350px","default":"",className:"cke_disabled",onLoad:function(){this.getInputElement().setAttribute("readOnly",!0)},setup:function(a,b){"clear"==a?this.setValue(""):"option"==a&&b.getAttribute("selected")&&this.setValue(b.$.value)}},{type:"hbox",widths:["175px","170px"],children:[{id:"txtSize",type:"text",labelLayout:"horizontal",label:c.lang.forms.select.size,"default":"",accessKey:"S",style:"width:175px",validate:function(){var a=CKEDITOR.dialog.validate.integer(c.lang.common.validateNumberFailed); +return""===this.getValue()||a.apply(this)},setup:function(a,b){"select"==a&&this.setValue(b.getAttribute("size")||"");CKEDITOR.env.webkit&&this.getInputElement().setStyle("width","86px")},commit:function(a){this.getValue()?a.setAttribute("size",this.getValue()):a.removeAttribute("size")}},{type:"html",html:"<span>"+CKEDITOR.tools.htmlEncode(c.lang.forms.select.lines)+"</span>"}]},{type:"html",html:"<span>"+CKEDITOR.tools.htmlEncode(c.lang.forms.select.opAvail)+"</span>"},{type:"hbox",widths:["115px", +"115px","100px"],children:[{type:"vbox",children:[{id:"txtOptName",type:"text",label:c.lang.forms.select.opText,style:"width:115px",setup:function(a){"clear"==a&&this.setValue("")}},{type:"select",id:"cmbName",label:"",title:"",size:5,style:"width:115px;height:75px",items:[],onChange:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbValue"),e=a.getContentElement("info","txtOptName"),a=a.getContentElement("info","txtOptValue"),d=g(this);i(b,d);e.setValue(this.getValue());a.setValue(b.getValue())}, +setup:function(a,b){"clear"==a?k(this):"option"==a&&h(this,b.getText(),b.getText(),this.getDialog().getParentEditor().document)},commit:function(a){var b=this.getDialog(),e=l(this),d=l(b.getContentElement("info","cmbValue")),c=b.getContentElement("info","txtValue").getValue();k(a);for(var f=0;f<e.count();f++){var g=h(a,e.getItem(f).getValue(),d.getItem(f).getValue(),b.getParentEditor().document);d.getItem(f).getValue()==c&&(g.setAttribute("selected","selected"),g.selected=!0)}}}]},{type:"vbox",children:[{id:"txtOptValue", +type:"text",label:c.lang.forms.select.opValue,style:"width:115px",setup:function(a){"clear"==a&&this.setValue("")}},{type:"select",id:"cmbValue",label:"",size:5,style:"width:115px;height:75px",items:[],onChange:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbName"),e=a.getContentElement("info","txtOptName"),a=a.getContentElement("info","txtOptValue"),d=g(this);i(b,d);e.setValue(b.getValue());a.setValue(this.getValue())},setup:function(a,b){if("clear"==a)k(this);else if("option"== +a){var e=b.getValue();h(this,e,e,this.getDialog().getParentEditor().document);"selected"==b.getAttribute("selected")&&this.getDialog().getContentElement("info","txtValue").setValue(e)}}}]},{type:"vbox",padding:5,children:[{type:"button",id:"btnAdd",label:c.lang.forms.select.btnAdd,title:c.lang.forms.select.btnAdd,style:"width:100%;",onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","txtOptName"),e=a.getContentElement("info","txtOptValue"),d=a.getContentElement("info","cmbName"), +c=a.getContentElement("info","cmbValue");h(d,b.getValue(),b.getValue(),a.getParentEditor().document);h(c,e.getValue(),e.getValue(),a.getParentEditor().document);b.setValue("");e.setValue("")}},{type:"button",id:"btnModify",label:c.lang.forms.select.btnModify,title:c.lang.forms.select.btnModify,style:"width:100%;",onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","txtOptName"),e=a.getContentElement("info","txtOptValue"),d=a.getContentElement("info","cmbName"),a=a.getContentElement("info", +"cmbValue"),c=g(d);0<=c&&(n(d,c,b.getValue(),b.getValue()),n(a,c,e.getValue(),e.getValue()))}},{type:"button",id:"btnUp",style:"width:100%;",label:c.lang.forms.select.btnUp,title:c.lang.forms.select.btnUp,onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbName"),c=a.getContentElement("info","cmbValue");j(b,-1,a.getParentEditor().document);j(c,-1,a.getParentEditor().document)}},{type:"button",id:"btnDown",style:"width:100%;",label:c.lang.forms.select.btnDown,title:c.lang.forms.select.btnDown, +onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbName"),c=a.getContentElement("info","cmbValue");j(b,1,a.getParentEditor().document);j(c,1,a.getParentEditor().document)}}]}]},{type:"hbox",widths:["40%","20%","40%"],children:[{type:"button",id:"btnSetValue",label:c.lang.forms.select.btnSetValue,title:c.lang.forms.select.btnSetValue,onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbValue");a.getContentElement("info","txtValue").setValue(b.getValue())}}, +{type:"button",id:"btnDelete",label:c.lang.forms.select.btnDelete,title:c.lang.forms.select.btnDelete,onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbName"),c=a.getContentElement("info","cmbValue"),d=a.getContentElement("info","txtOptName"),a=a.getContentElement("info","txtOptValue");m(b);m(c);d.setValue("");a.setValue("")}},{type:"vbox",children:[{id:"chkMulti",type:"checkbox",label:c.lang.forms.select.chkMulti,"default":"",accessKey:"M",value:"checked",setup:function(a, +b){"select"==a&&this.setValue(b.getAttribute("multiple"))},commit:function(a){this.getValue()?a.setAttribute("multiple",this.getValue()):a.removeAttribute("multiple")}},{id:"required",type:"checkbox",label:c.lang.forms.select.required,"default":"",accessKey:"Q",value:"checked",setup:function(a,b){"select"==a&&this.setValue(b.getAttribute("required"))},commit:function(a){this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/textarea.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/textarea.js new file mode 100644 index 0000000..d07a364 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/textarea.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("textarea",function(b){return{title:b.lang.forms.textarea.title,minWidth:350,minHeight:220,onShow:function(){delete this.textarea;var a=this.getParentEditor().getSelection().getSelectedElement();a&&"textarea"==a.getName()&&(this.textarea=a,this.setupContent(a))},onOk:function(){var a,b=this.textarea,c=!b;c&&(a=this.getParentEditor(),b=a.document.createElement("textarea"));this.commitContent(b);c&&a.insertElement(b)},contents:[{id:"info",label:b.lang.forms.textarea.title,title:b.lang.forms.textarea.title, +elements:[{id:"_cke_saved_name",type:"text",label:b.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{type:"hbox",widths:["50%","50%"],children:[{id:"cols",type:"text",label:b.lang.forms.textarea.cols,"default":"",accessKey:"C",style:"width:50px",validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed), +setup:function(a){this.setValue(a.hasAttribute("cols")&&a.getAttribute("cols")||"")},commit:function(a){this.getValue()?a.setAttribute("cols",this.getValue()):a.removeAttribute("cols")}},{id:"rows",type:"text",label:b.lang.forms.textarea.rows,"default":"",accessKey:"R",style:"width:50px",validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed),setup:function(a){this.setValue(a.hasAttribute("rows")&&a.getAttribute("rows")||"")},commit:function(a){this.getValue()?a.setAttribute("rows", +this.getValue()):a.removeAttribute("rows")}}]},{id:"value",type:"textarea",label:b.lang.forms.textfield.value,"default":"",setup:function(a){this.setValue(a.$.defaultValue)},commit:function(a){a.$.value=a.$.defaultValue=this.getValue()}},{id:"required",type:"checkbox",label:b.lang.forms.textfield.required,"default":"",accessKey:"Q",value:"required",setup:function(a){this.setValue(a.getAttribute("required"))},commit:function(a){this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/textfield.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/textfield.js new file mode 100644 index 0000000..3df3597 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/dialogs/textfield.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("textfield",function(b){function e(a){var a=a.element,b=this.getValue();b?a.setAttribute(this.id,b):a.removeAttribute(this.id)}function f(a){this.setValue(a.hasAttribute(this.id)&&a.getAttribute(this.id)||"")}var g={email:1,password:1,search:1,tel:1,text:1,url:1};return{title:b.lang.forms.textfield.title,minWidth:350,minHeight:150,onShow:function(){delete this.textField;var a=this.getParentEditor().getSelection().getSelectedElement();if(a&&"input"==a.getName()&&(g[a.getAttribute("type")]|| +!a.getAttribute("type")))this.textField=a,this.setupContent(a)},onOk:function(){var a=this.getParentEditor(),b=this.textField,c=!b;c&&(b=a.document.createElement("input"),b.setAttribute("type","text"));b={element:b};c&&a.insertElement(b.element);this.commitContent(b);c||a.getSelection().selectElement(b.element)},onLoad:function(){this.foreach(function(a){if(a.getValue&&(a.setup||(a.setup=f),!a.commit))a.commit=e})},contents:[{id:"info",label:b.lang.forms.textfield.title,title:b.lang.forms.textfield.title, +elements:[{type:"hbox",widths:["50%","50%"],children:[{id:"_cke_saved_name",type:"text",label:b.lang.forms.textfield.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){a=a.element;this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"value",type:"text",label:b.lang.forms.textfield.value,"default":"",accessKey:"V",commit:function(a){if(CKEDITOR.env.ie&& +!this.getValue()){var d=a.element,c=new CKEDITOR.dom.element("input",b.document);d.copyAttributes(c,{value:1});c.replace(d);a.element=c}else e.call(this,a)}}]},{type:"hbox",widths:["50%","50%"],children:[{id:"size",type:"text",label:b.lang.forms.textfield.charWidth,"default":"",accessKey:"C",style:"width:50px",validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed)},{id:"maxLength",type:"text",label:b.lang.forms.textfield.maxChars,"default":"",accessKey:"M",style:"width:50px", +validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed)}],onLoad:function(){CKEDITOR.env.ie7Compat&&this.getElement().setStyle("zoom","100%")}},{id:"type",type:"select",label:b.lang.forms.textfield.type,"default":"text",accessKey:"M",items:[[b.lang.forms.textfield.typeEmail,"email"],[b.lang.forms.textfield.typePass,"password"],[b.lang.forms.textfield.typeSearch,"search"],[b.lang.forms.textfield.typeTel,"tel"],[b.lang.forms.textfield.typeText,"text"],[b.lang.forms.textfield.typeUrl, +"url"]],setup:function(a){this.setValue(a.getAttribute("type"))},commit:function(a){var d=a.element;if(CKEDITOR.env.ie){var c=d.getAttribute("type"),e=this.getValue();c!=e&&(c=CKEDITOR.dom.element.createFromHtml('<input type="'+e+'"></input>',b.document),d.copyAttributes(c,{type:1}),c.replace(d),a.element=c)}else d.setAttribute("type",this.getValue())}},{id:"required",type:"checkbox",label:b.lang.forms.textfield.required,"default":"",accessKey:"Q",value:"required",setup:function(a){this.setValue(a.getAttribute("required"))}, +commit:function(a){a=a.element;this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/button.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/button.png new file mode 100644 index 0000000..0bf68ca Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/button.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/checkbox.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/checkbox.png new file mode 100644 index 0000000..2f4eb2f Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/checkbox.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/form.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/form.png new file mode 100644 index 0000000..0841667 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/form.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hiddenfield.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hiddenfield.png new file mode 100644 index 0000000..fce4fcc Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hiddenfield.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/button.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/button.png new file mode 100644 index 0000000..bd92b16 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/button.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/checkbox.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/checkbox.png new file mode 100644 index 0000000..36be4aa Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/checkbox.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/form.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/form.png new file mode 100644 index 0000000..4a02649 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/form.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/hiddenfield.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/hiddenfield.png new file mode 100644 index 0000000..cd5f318 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/hiddenfield.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/imagebutton.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/imagebutton.png new file mode 100644 index 0000000..d273796 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/imagebutton.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/radio.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/radio.png new file mode 100644 index 0000000..2f0c72d Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/radio.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/select-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/select-rtl.png new file mode 100644 index 0000000..42452e1 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/select-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/select.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/select.png new file mode 100644 index 0000000..da2b066 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/select.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textarea-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textarea-rtl.png new file mode 100644 index 0000000..60618a5 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textarea-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textarea.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textarea.png new file mode 100644 index 0000000..87073d2 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textarea.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textfield-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textfield-rtl.png new file mode 100644 index 0000000..d3c1358 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textfield-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textfield.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textfield.png new file mode 100644 index 0000000..d3c1358 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/hidpi/textfield.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/imagebutton.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/imagebutton.png new file mode 100644 index 0000000..162df9a Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/imagebutton.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/radio.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/radio.png new file mode 100644 index 0000000..aaad523 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/radio.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/select-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/select-rtl.png new file mode 100644 index 0000000..029a0d2 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/select-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/select.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/select.png new file mode 100644 index 0000000..44b02b9 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/select.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textarea-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textarea-rtl.png new file mode 100644 index 0000000..8a15d68 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textarea-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textarea.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textarea.png new file mode 100644 index 0000000..58e0fa0 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textarea.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textfield-rtl.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textfield-rtl.png new file mode 100644 index 0000000..054aab5 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textfield-rtl.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textfield.png b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textfield.png new file mode 100644 index 0000000..054aab5 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/icons/textfield.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/images/hiddenfield.gif b/zup-painel/assets/scripts/ckeditor/plugins/forms/images/hiddenfield.gif new file mode 100644 index 0000000..953f643 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/forms/images/hiddenfield.gif differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/af.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/af.js new file mode 100644 index 0000000..aac8735 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/af.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","af",{button:{title:"Knop eienskappe",text:"Teks (Waarde)",type:"Soort",typeBtn:"Knop",typeSbm:"Stuur",typeRst:"Maak leeg"},checkboxAndRadio:{checkboxTitle:"Merkhokkie eienskappe",radioTitle:"Radioknoppie eienskappe",value:"Waarde",selected:"Geselekteer",required:"Required"},form:{title:"Vorm eienskappe",menu:"Vorm eienskappe",action:"Aksie",method:"Metode",encoding:"Kodering"},hidden:{title:"Verborge veld eienskappe",name:"Naam",value:"Waarde"},select:{title:"Keuseveld eienskappe", +selectInfo:"Info",opAvail:"Beskikbare opsies",value:"Waarde",size:"Grootte",lines:"Lyne",chkMulti:"Laat meer as een keuse toe",required:"Required",opText:"Teks",opValue:"Waarde",btnAdd:"Byvoeg",btnModify:"Wysig",btnUp:"Op",btnDown:"Af",btnSetValue:"Stel as geselekteerde waarde",btnDelete:"Verwyder"},textarea:{title:"Teks-area eienskappe",cols:"Kolomme",rows:"Rye"},textfield:{title:"Teksveld eienskappe",name:"Naam",value:"Waarde",charWidth:"Breedte (karakters)",maxChars:"Maksimum karakters",required:"Required", +type:"Soort",typeText:"Teks",typePass:"Wagwoord",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ar.js new file mode 100644 index 0000000..a2a8dec --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ar.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","ar",{button:{title:"خصائص زر الضغط",text:"القيمة/التسمية",type:"نوع الزر",typeBtn:"زر",typeSbm:"إرسال",typeRst:"إعادة تعيين"},checkboxAndRadio:{checkboxTitle:"خصائص خانة الإختيار",radioTitle:"خصائص زر الخيار",value:"القيمة",selected:"محدد",required:"Required"},form:{title:"خصائص النموذج",menu:"خصائص النموذج",action:"اسم الملف",method:"الأسلوب",encoding:"تشفير"},hidden:{title:"خصائص الحقل المخفي",name:"الاسم",value:"القيمة"},select:{title:"خصائص اختيار الحقل",selectInfo:"اختار معلومات", +opAvail:"الخيارات المتاحة",value:"القيمة",size:"الحجم",lines:"الأسطر",chkMulti:"السماح بتحديدات متعددة",required:"Required",opText:"النص",opValue:"القيمة",btnAdd:"إضافة",btnModify:"تعديل",btnUp:"أعلى",btnDown:"أسفل",btnSetValue:"إجعلها محددة",btnDelete:"إزالة"},textarea:{title:"خصائص مساحة النص",cols:"الأعمدة",rows:"الصفوف"},textfield:{title:"خصائص مربع النص",name:"الاسم",value:"القيمة",charWidth:"عرض السمات",maxChars:"اقصى عدد للسمات",required:"Required",type:"نوع المحتوى",typeText:"نص",typePass:"كلمة مرور", +typeEmail:"بريد إلكتروني",typeSearch:"بحث",typeTel:"رقم الهاتف",typeUrl:"الرابط"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/bg.js new file mode 100644 index 0000000..5f01a20 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/bg.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","bg",{button:{title:"Настройки на бутона",text:"Текст (стойност)",type:"Тип",typeBtn:"Бутон",typeSbm:"Добави",typeRst:"Нулиране"},checkboxAndRadio:{checkboxTitle:"Checkbox Properties",radioTitle:"Настройки на радиобутон",value:"Стойност",selected:"Избрано",required:"Required"},form:{title:"Настройки на формата",menu:"Настройки на формата",action:"Действие",method:"Метод",encoding:"Кодиране"},hidden:{title:"Настройки за скрито поле",name:"Име",value:"Стойност"},select:{title:"Selection Field Properties", +selectInfo:"Select Info",opAvail:"Налични опции",value:"Стойност",size:"Размер",lines:"линии",chkMulti:"Allow multiple selections",required:"Required",opText:"Текст",opValue:"Стойност",btnAdd:"Добави",btnModify:"Промени",btnUp:"На горе",btnDown:"На долу",btnSetValue:"Set as selected value",btnDelete:"Изтриване"},textarea:{title:"Опции за текстовата зона",cols:"Колони",rows:"Редове"},textfield:{title:"Настройки за текстово поле",name:"Име",value:"Стойност",charWidth:"Ширина на знаците",maxChars:"Макс. знаци", +required:"Required",type:"Тип",typeText:"Текст",typePass:"Парола",typeEmail:"Email",typeSearch:"Търсене",typeTel:"Телефонен номер",typeUrl:"Уеб адрес"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/bn.js new file mode 100644 index 0000000..b79bd08 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/bn.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","bn",{button:{title:"বাটন প্রোপার্টি",text:"টেক্সট (ভ্যালু)",type:"প্রকার",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"চেক বক্স প্রোপার্টি",radioTitle:"রেডিও বাটন প্রোপার্টি",value:"ভ্যালু",selected:"সিলেক্টেড",required:"Required"},form:{title:"ফর্ম প্রোপার্টি",menu:"ফর্ম প্রোপার্টি",action:"একশ্যন",method:"পদ্ধতি",encoding:"Encoding"},hidden:{title:"গুপ্ত ফীল্ড প্রোপার্টি",name:"নাম",value:"ভ্যালু"},select:{title:"বাছাই ফীল্ড প্রোপার্টি", +selectInfo:"তথ্য",opAvail:"অন্যান্য বিকল্প",value:"ভ্যালু",size:"সাইজ",lines:"লাইন সমূহ",chkMulti:"একাধিক সিলেকশন এলাউ কর",required:"Required",opText:"টেক্সট",opValue:"ভ্যালু",btnAdd:"যুক্ত",btnModify:"বদলে দাও",btnUp:"উপর",btnDown:"নীচে",btnSetValue:"বাছাই করা ভ্যালু হিসেবে সেট কর",btnDelete:"ডিলীট"},textarea:{title:"টেক্সট এরিয়া প্রোপার্টি",cols:"কলাম",rows:"রো"},textfield:{title:"টেক্সট ফীল্ড প্রোপার্টি",name:"নাম",value:"ভ্যালু",charWidth:"ক্যারেক্টার প্রশস্ততা",maxChars:"সর্বাধিক ক্যারেক্টার", +required:"Required",type:"টাইপ",typeText:"টেক্সট",typePass:"পাসওয়ার্ড",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/bs.js new file mode 100644 index 0000000..0113bcd --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/bs.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","bs",{button:{title:"Button Properties",text:"Text (Value)",type:"Type",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Checkbox Properties",radioTitle:"Radio Button Properties",value:"Value",selected:"Selected",required:"Required"},form:{title:"Form Properties",menu:"Form Properties",action:"Action",method:"Method",encoding:"Encoding"},hidden:{title:"Hidden Field Properties",name:"Name",value:"Value"},select:{title:"Selection Field Properties", +selectInfo:"Select Info",opAvail:"Available Options",value:"Value",size:"Size",lines:"lines",chkMulti:"Allow multiple selections",required:"Required",opText:"Text",opValue:"Value",btnAdd:"Add",btnModify:"Modify",btnUp:"Up",btnDown:"Down",btnSetValue:"Set as selected value",btnDelete:"Delete"},textarea:{title:"Textarea Properties",cols:"Columns",rows:"Rows"},textfield:{title:"Text Field Properties",name:"Name",value:"Value",charWidth:"Character Width",maxChars:"Maximum Characters",required:"Required", +type:"Type",typeText:"Text",typePass:"Password",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ca.js new file mode 100644 index 0000000..65ddd79 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","ca",{button:{title:"Propietats del botó",text:"Text (Valor)",type:"Tipus",typeBtn:"Botó",typeSbm:"Transmet formulari",typeRst:"Reinicia formulari"},checkboxAndRadio:{checkboxTitle:"Propietats de la casella de verificació",radioTitle:"Propietats del botó d'opció",value:"Valor",selected:"Seleccionat",required:"Required"},form:{title:"Propietats del formulari",menu:"Propietats del formulari",action:"Acció",method:"Mètode",encoding:"Codificació"},hidden:{title:"Propietats del camp ocult", +name:"Nom",value:"Valor"},select:{title:"Propietats del camp de selecció",selectInfo:"Info",opAvail:"Opcions disponibles",value:"Valor",size:"Mida",lines:"Línies",chkMulti:"Permet múltiples seleccions",required:"Required",opText:"Text",opValue:"Valor",btnAdd:"Afegeix",btnModify:"Modifica",btnUp:"Amunt",btnDown:"Avall",btnSetValue:"Selecciona per defecte",btnDelete:"Elimina"},textarea:{title:"Propietats de l'àrea de text",cols:"Columnes",rows:"Files"},textfield:{title:"Propietats del camp de text", +name:"Nom",value:"Valor",charWidth:"Amplada",maxChars:"Nombre màxim de caràcters",required:"Required",type:"Tipus",typeText:"Text",typePass:"Contrasenya",typeEmail:"Correu electrònic",typeSearch:"Cercar",typeTel:"Número de telèfon",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/cs.js new file mode 100644 index 0000000..ba881bd --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/cs.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","cs",{button:{title:"Vlastnosti tlačítka",text:"Popisek",type:"Typ",typeBtn:"Tlačítko",typeSbm:"Odeslat",typeRst:"Obnovit"},checkboxAndRadio:{checkboxTitle:"Vlastnosti zaškrtávacího políčka",radioTitle:"Vlastnosti přepínače",value:"Hodnota",selected:"Zaškrtnuto",required:"Vyžadováno"},form:{title:"Vlastnosti formuláře",menu:"Vlastnosti formuláře",action:"Akce",method:"Metoda",encoding:"Kódování"},hidden:{title:"Vlastnosti skrytého pole",name:"Název",value:"Hodnota"}, +select:{title:"Vlastnosti seznamu",selectInfo:"Info",opAvail:"Dostupná nastavení",value:"Hodnota",size:"Velikost",lines:"Řádků",chkMulti:"Povolit mnohonásobné výběry",required:"Vyžadováno",opText:"Text",opValue:"Hodnota",btnAdd:"Přidat",btnModify:"Změnit",btnUp:"Nahoru",btnDown:"Dolů",btnSetValue:"Nastavit jako vybranou hodnotu",btnDelete:"Smazat"},textarea:{title:"Vlastnosti textové oblasti",cols:"Sloupců",rows:"Řádků"},textfield:{title:"Vlastnosti textového pole",name:"Název",value:"Hodnota",charWidth:"Šířka ve znacích", +maxChars:"Maximální počet znaků",required:"Vyžadováno",type:"Typ",typeText:"Text",typePass:"Heslo",typeEmail:"Email",typeSearch:"Hledat",typeTel:"Telefonní číslo",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/cy.js new file mode 100644 index 0000000..f2e4b93 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/cy.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","cy",{button:{title:"Priodweddau Botymau",text:"Testun (Gwerth)",type:"Math",typeBtn:"Botwm",typeSbm:"Anfon",typeRst:"Ailosod"},checkboxAndRadio:{checkboxTitle:"Priodweddau Blwch Ticio",radioTitle:"Priodweddau Botwm Radio",value:"Gwerth",selected:"Dewiswyd",required:"Required"},form:{title:"Priodweddau Ffurflen",menu:"Priodweddau Ffurflen",action:"Gweithred",method:"Dull",encoding:"Amgodio"},hidden:{title:"Priodweddau Maes Cudd",name:"Enw",value:"Gwerth"},select:{title:"Priodweddau Maes Dewis", +selectInfo:"Gwyb Dewis",opAvail:"Opsiynau ar Gael",value:"Gwerth",size:"Maint",lines:"llinellau",chkMulti:"Caniatàu aml-ddewisiadau",required:"Required",opText:"Testun",opValue:"Gwerth",btnAdd:"Ychwanegu",btnModify:"Newid",btnUp:"Lan",btnDown:"Lawr",btnSetValue:"Gosod fel gwerth a ddewiswyd",btnDelete:"Dileu"},textarea:{title:"Priodweddau Ardal Testun",cols:"Colofnau",rows:"Rhesi"},textfield:{title:"Priodweddau Maes Testun",name:"Enw",value:"Gwerth",charWidth:"Lled Nod",maxChars:"Uchafswm y Nodau", +required:"Required",type:"Math",typeText:"Testun",typePass:"Cyfrinair",typeEmail:"Ebost",typeSearch:"Chwilio",typeTel:"Rhif Ffôn",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/da.js new file mode 100644 index 0000000..f83f4ea --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/da.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","da",{button:{title:"Egenskaber for knap",text:"Tekst",type:"Type",typeBtn:"Knap",typeSbm:"Send",typeRst:"Nulstil"},checkboxAndRadio:{checkboxTitle:"Egenskaber for afkrydsningsfelt",radioTitle:"Egenskaber for alternativknap",value:"Værdi",selected:"Valgt",required:"Required"},form:{title:"Egenskaber for formular",menu:"Egenskaber for formular",action:"Handling",method:"Metode",encoding:"Kodning (encoding)"},hidden:{title:"Egenskaber for skjult felt",name:"Navn",value:"Værdi"}, +select:{title:"Egenskaber for liste",selectInfo:"Generelt",opAvail:"Valgmuligheder",value:"Værdi",size:"Størrelse",lines:"Linjer",chkMulti:"Tillad flere valg",required:"Required",opText:"Tekst",opValue:"Værdi",btnAdd:"Tilføj",btnModify:"Redigér",btnUp:"Op",btnDown:"Ned",btnSetValue:"Sæt som valgt",btnDelete:"Slet"},textarea:{title:"Egenskaber for tekstboks",cols:"Kolonner",rows:"Rækker"},textfield:{title:"Egenskaber for tekstfelt",name:"Navn",value:"Værdi",charWidth:"Bredde (tegn)",maxChars:"Max. antal tegn", +required:"Required",type:"Type",typeText:"Tekst",typePass:"Adgangskode",typeEmail:"E-mail",typeSearch:"Søg",typeTel:"Telefon nummer",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/de.js new file mode 100644 index 0000000..1f6b459 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/de.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","de",{button:{title:"Schaltflächeneigenschaften",text:"Text (Wert)",type:"Typ",typeBtn:"Button",typeSbm:"Absenden",typeRst:"Zurücksetzen"},checkboxAndRadio:{checkboxTitle:"Kontrollboxeigenschaften",radioTitle:"Optionsfeldeigenschaften",value:"Wert",selected:"Ausgewählt",required:"Erforderlich"},form:{title:"Formulareigenschaften",menu:"Formulareigenschaften",action:"Aktion",method:"Methode",encoding:"Kodierung"},hidden:{title:"Versteckte Feldeigenschaften",name:"Name", +value:"Wert"},select:{title:"Auswahlfeldeigenschaften",selectInfo:"Info auswählen",opAvail:"Verfügbare Optionen",value:"Wert",size:"Größe",lines:"Linien",chkMulti:"Mehrfachauswahl erlauben",required:"Erforderlich",opText:"Text",opValue:"Wert",btnAdd:"Hinzufügen",btnModify:"Ändern",btnUp:"Hoch",btnDown:"Runter",btnSetValue:"Als ausgewählten Wert festlegen",btnDelete:"Entfernen"},textarea:{title:"Textfeldeigenschaften",cols:"Spalten",rows:"Reihen"},textfield:{title:"Textfeldeigenschaften",name:"Name", +value:"Wert",charWidth:"Zeichenbreite",maxChars:"Max. Zeichen",required:"Erforderlich",type:"Typ",typeText:"Text",typePass:"Passwort",typeEmail:"E-mail",typeSearch:"Suche",typeTel:"Telefonnummer",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/el.js new file mode 100644 index 0000000..5675b9b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/el.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","el",{button:{title:"Ιδιότητες Κουμπιού",text:"Κείμενο (Τιμή)",type:"Τύπος",typeBtn:"Κουμπί",typeSbm:"Υποβολή",typeRst:"Επαναφορά"},checkboxAndRadio:{checkboxTitle:"Ιδιότητες Κουτιού Επιλογής",radioTitle:"Ιδιότητες Κουμπιού Επιλογής",value:"Τιμή",selected:"Επιλεγμένο",required:"Required"},form:{title:"Ιδιότητες Φόρμας",menu:"Ιδιότητες Φόρμας",action:"Ενέργεια",method:"Μέθοδος",encoding:"Κωδικοποίηση"},hidden:{title:"Ιδιότητες Κρυφού Πεδίου",name:"Όνομα",value:"Τιμή"}, +select:{title:"Ιδιότητες Πεδίου Επιλογής",selectInfo:"Πληροφορίες Πεδίου Επιλογής",opAvail:"Διαθέσιμες Επιλογές",value:"Τιμή",size:"Μέγεθος",lines:"γραμμές",chkMulti:"Να επιτρέπονται οι πολλαπλές επιλογές",required:"Required",opText:"Κείμενο",opValue:"Τιμή",btnAdd:"Προσθήκη",btnModify:"Τροποποίηση",btnUp:"Πάνω",btnDown:"Κάτω",btnSetValue:"Θέση ως προεπιλογή",btnDelete:"Διαγραφή"},textarea:{title:"Ιδιότητες Περιοχής Κειμένου",cols:"Στήλες",rows:"Σειρές"},textfield:{title:"Ιδιότητες Πεδίου Κειμένου", +name:"Όνομα",value:"Τιμή",charWidth:"Πλάτος Χαρακτήρων",maxChars:"Μέγιστοι χαρακτήρες",required:"Required",type:"Τύπος",typeText:"Κείμενο",typePass:"Κωδικός",typeEmail:"Email",typeSearch:"Αναζήτηση",typeTel:"Αριθμός Τηλεφώνου",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en-au.js new file mode 100644 index 0000000..758157a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en-au.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","en-au",{button:{title:"Button Properties",text:"Text (Value)",type:"Type",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Checkbox Properties",radioTitle:"Radio Button Properties",value:"Value",selected:"Selected",required:"Required"},form:{title:"Form Properties",menu:"Form Properties",action:"Action",method:"Method",encoding:"Encoding"},hidden:{title:"Hidden Field Properties",name:"Name",value:"Value"},select:{title:"Selection Field Properties", +selectInfo:"Select Info",opAvail:"Available Options",value:"Value",size:"Size",lines:"lines",chkMulti:"Allow multiple selections",required:"Required",opText:"Text",opValue:"Value",btnAdd:"Add",btnModify:"Modify",btnUp:"Up",btnDown:"Down",btnSetValue:"Set as selected value",btnDelete:"Delete"},textarea:{title:"Textarea Properties",cols:"Columns",rows:"Rows"},textfield:{title:"Text Field Properties",name:"Name",value:"Value",charWidth:"Character Width",maxChars:"Maximum Characters",required:"Required", +type:"Type",typeText:"Text",typePass:"Password",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en-ca.js new file mode 100644 index 0000000..cb7bbbc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en-ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","en-ca",{button:{title:"Button Properties",text:"Text (Value)",type:"Type",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Checkbox Properties",radioTitle:"Radio Button Properties",value:"Value",selected:"Selected",required:"Required"},form:{title:"Form Properties",menu:"Form Properties",action:"Action",method:"Method",encoding:"Encoding"},hidden:{title:"Hidden Field Properties",name:"Name",value:"Value"},select:{title:"Selection Field Properties", +selectInfo:"Select Info",opAvail:"Available Options",value:"Value",size:"Size",lines:"lines",chkMulti:"Allow multiple selections",required:"Required",opText:"Text",opValue:"Value",btnAdd:"Add",btnModify:"Modify",btnUp:"Up",btnDown:"Down",btnSetValue:"Set as selected value",btnDelete:"Delete"},textarea:{title:"Textarea Properties",cols:"Columns",rows:"Rows"},textfield:{title:"Text Field Properties",name:"Name",value:"Value",charWidth:"Character Width",maxChars:"Maximum Characters",required:"Required", +type:"Type",typeText:"Text",typePass:"Password",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en-gb.js new file mode 100644 index 0000000..4f86399 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en-gb.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","en-gb",{button:{title:"Button Properties",text:"Text (Value)",type:"Type",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Checkbox Properties",radioTitle:"Radio Button Properties",value:"Value",selected:"Selected",required:"Required"},form:{title:"Form Properties",menu:"Form Properties",action:"Action",method:"Method",encoding:"Encoding"},hidden:{title:"Hidden Field Properties",name:"Name",value:"Value"},select:{title:"Selection Field Properties", +selectInfo:"Select Info",opAvail:"Available Options",value:"Value",size:"Size",lines:"lines",chkMulti:"Allow multiple selections",required:"Required",opText:"Text",opValue:"Value",btnAdd:"Add",btnModify:"Modify",btnUp:"Up",btnDown:"Down",btnSetValue:"Set as selected value",btnDelete:"Delete"},textarea:{title:"Textarea Properties",cols:"Columns",rows:"Rows"},textfield:{title:"Text Field Properties",name:"Name",value:"Value",charWidth:"Character Width",maxChars:"Maximum Characters",required:"Required", +type:"Type",typeText:"Text",typePass:"Password",typeEmail:"E-mail",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en.js new file mode 100644 index 0000000..497eea3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/en.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","en",{button:{title:"Button Properties",text:"Text (Value)",type:"Type",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Checkbox Properties",radioTitle:"Radio Button Properties",value:"Value",selected:"Selected",required:"Required"},form:{title:"Form Properties",menu:"Form Properties",action:"Action",method:"Method",encoding:"Encoding"},hidden:{title:"Hidden Field Properties",name:"Name",value:"Value"},select:{title:"Selection Field Properties", +selectInfo:"Select Info",opAvail:"Available Options",value:"Value",size:"Size",lines:"lines",chkMulti:"Allow multiple selections",required:"Required",opText:"Text",opValue:"Value",btnAdd:"Add",btnModify:"Modify",btnUp:"Up",btnDown:"Down",btnSetValue:"Set as selected value",btnDelete:"Delete"},textarea:{title:"Textarea Properties",cols:"Columns",rows:"Rows"},textfield:{title:"Text Field Properties",name:"Name",value:"Value",charWidth:"Character Width",maxChars:"Maximum Characters",required:"Required", +type:"Type",typeText:"Text",typePass:"Password",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/eo.js new file mode 100644 index 0000000..4dcfade --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/eo.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","eo",{button:{title:"Butonaj atributoj",text:"Teksto (Valoro)",type:"Tipo",typeBtn:"Butono",typeSbm:"Validigi (submit)",typeRst:"Remeti en la originstaton (Reset)"},checkboxAndRadio:{checkboxTitle:"Markobutonaj Atributoj",radioTitle:"Radiobutonaj Atributoj",value:"Valoro",selected:"Selektita",required:"Required"},form:{title:"Formularaj Atributoj",menu:"Formularaj Atributoj",action:"Ago",method:"Metodo",encoding:"Kodoprezento"},hidden:{title:"Atributoj de Kaŝita Kampo", +name:"Nomo",value:"Valoro"},select:{title:"Atributoj de Elekta Kampo",selectInfo:"Informoj pri la rulummenuo",opAvail:"Elektoj Disponeblaj",value:"Valoro",size:"Grando",lines:"Linioj",chkMulti:"Permesi Plurajn Elektojn",required:"Required",opText:"Teksto",opValue:"Valoro",btnAdd:"Aldoni",btnModify:"Modifi",btnUp:"Supren",btnDown:"Malsupren",btnSetValue:"Agordi kiel Elektitan Valoron",btnDelete:"Forigi"},textarea:{title:"Atributoj de Teksta Areo",cols:"Kolumnoj",rows:"Linioj"},textfield:{title:"Atributoj de Teksta Kampo", +name:"Nomo",value:"Valoro",charWidth:"Signolarĝo",maxChars:"Maksimuma Nombro da Signoj",required:"Required",type:"Tipo",typeText:"Teksto",typePass:"Pasvorto",typeEmail:"retpoŝtadreso",typeSearch:"Serĉi",typeTel:"Telefonnumero",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/es.js new file mode 100644 index 0000000..b06c971 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/es.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","es",{button:{title:"Propiedades de Botón",text:"Texto (Valor)",type:"Tipo",typeBtn:"Boton",typeSbm:"Enviar",typeRst:"Reestablecer"},checkboxAndRadio:{checkboxTitle:"Propiedades de Casilla",radioTitle:"Propiedades de Botón de Radio",value:"Valor",selected:"Seleccionado",required:"Required"},form:{title:"Propiedades de Formulario",menu:"Propiedades de Formulario",action:"Acción",method:"Método",encoding:"Codificación"},hidden:{title:"Propiedades de Campo Oculto",name:"Nombre", +value:"Valor"},select:{title:"Propiedades de Campo de Selección",selectInfo:"Información",opAvail:"Opciones disponibles",value:"Valor",size:"Tamaño",lines:"Lineas",chkMulti:"Permitir múltiple selección",required:"Required",opText:"Texto",opValue:"Valor",btnAdd:"Agregar",btnModify:"Modificar",btnUp:"Subir",btnDown:"Bajar",btnSetValue:"Establecer como predeterminado",btnDelete:"Eliminar"},textarea:{title:"Propiedades de Area de Texto",cols:"Columnas",rows:"Filas"},textfield:{title:"Propiedades de Campo de Texto", +name:"Nombre",value:"Valor",charWidth:"Caracteres de ancho",maxChars:"Máximo caracteres",required:"Required",type:"Tipo",typeText:"Texto",typePass:"Contraseña",typeEmail:"Correo electrónico",typeSearch:"Buscar",typeTel:"Número de teléfono",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/et.js new file mode 100644 index 0000000..dc34b54 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/et.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","et",{button:{title:"Nupu omadused",text:"Tekst (väärtus)",type:"Liik",typeBtn:"Nupp",typeSbm:"Saada",typeRst:"Lähtesta"},checkboxAndRadio:{checkboxTitle:"Märkeruudu omadused",radioTitle:"Raadionupu omadused",value:"Väärtus",selected:"Märgitud",required:"Required"},form:{title:"Vormi omadused",menu:"Vormi omadused",action:"Toiming",method:"Meetod",encoding:"Kodeering"},hidden:{title:"Varjatud lahtri omadused",name:"Nimi",value:"Väärtus"},select:{title:"Valiklahtri omadused", +selectInfo:"Info",opAvail:"Võimalikud valikud:",value:"Väärtus",size:"Suurus",lines:"ridu",chkMulti:"Võimalik mitu valikut",required:"Required",opText:"Tekst",opValue:"Väärtus",btnAdd:"Lisa",btnModify:"Muuda",btnUp:"Üles",btnDown:"Alla",btnSetValue:"Määra vaikimisi",btnDelete:"Kustuta"},textarea:{title:"Tekstiala omadused",cols:"Veerge",rows:"Ridu"},textfield:{title:"Tekstilahtri omadused",name:"Nimi",value:"Väärtus",charWidth:"Laius (tähemärkides)",maxChars:"Maksimaalselt tähemärke",required:"Required", +type:"Liik",typeText:"Tekst",typePass:"Parool",typeEmail:"E-mail",typeSearch:"Otsi",typeTel:"Telefon",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/eu.js new file mode 100644 index 0000000..d21cde1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/eu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","eu",{button:{title:"Botoiaren Ezaugarriak",text:"Testua (Balorea)",type:"Mota",typeBtn:"Botoia",typeSbm:"Bidali",typeRst:"Garbitu"},checkboxAndRadio:{checkboxTitle:"Kontrol-laukiko Ezaugarriak",radioTitle:"Aukera-botoiaren Ezaugarriak",value:"Balorea",selected:"Hautatuta",required:"Required"},form:{title:"Formularioaren Ezaugarriak",menu:"Formularioaren Ezaugarriak",action:"Ekintza",method:"Metodoa",encoding:"Kodeketa"},hidden:{title:"Ezkutuko Eremuaren Ezaugarriak", +name:"Izena",value:"Balorea"},select:{title:"Hautespen Eremuaren Ezaugarriak",selectInfo:"Informazioa",opAvail:"Aukera Eskuragarriak",value:"Balorea",size:"Tamaina",lines:"lerro kopurura",chkMulti:"Hautaketa anitzak baimendu",required:"Required",opText:"Testua",opValue:"Balorea",btnAdd:"Gehitu",btnModify:"Aldatu",btnUp:"Gora",btnDown:"Behera",btnSetValue:"Aukeratutako balorea ezarri",btnDelete:"Ezabatu"},textarea:{title:"Testu-arearen Ezaugarriak",cols:"Zutabeak",rows:"Lerroak"},textfield:{title:"Testu Eremuaren Ezaugarriak", +name:"Izena",value:"Balorea",charWidth:"Zabalera",maxChars:"Zenbat karaktere gehienez",required:"Required",type:"Mota",typeText:"Testua",typePass:"Pasahitza",typeEmail:"E-posta",typeSearch:"Bilatu",typeTel:"Telefono Zenbakia",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fa.js new file mode 100644 index 0000000..344ed5d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fa.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","fa",{button:{title:"ویژگی​های دکمه",text:"متن (مقدار)",type:"نوع",typeBtn:"دکمه",typeSbm:"ثبت",typeRst:"بازنشانی (Reset)"},checkboxAndRadio:{checkboxTitle:"ویژگی​های خانهٴ گزینه​ای",radioTitle:"ویژگی​های دکمهٴ رادیویی",value:"مقدار",selected:"برگزیده",required:"Required"},form:{title:"ویژگی​های فرم",menu:"ویژگی​های فرم",action:"رویداد",method:"متد",encoding:"رمزنگاری"},hidden:{title:"ویژگی​های فیلد پنهان",name:"نام",value:"مقدار"},select:{title:"ویژگی​های فیلد چندگزینه​ای", +selectInfo:"اطلاعات",opAvail:"گزینه​های دردسترس",value:"مقدار",size:"اندازه",lines:"خطوط",chkMulti:"گزینش چندگانه فراهم باشد",required:"Required",opText:"متن",opValue:"مقدار",btnAdd:"افزودن",btnModify:"ویرایش",btnUp:"بالا",btnDown:"پائین",btnSetValue:"تنظیم به عنوان مقدار برگزیده",btnDelete:"پاککردن"},textarea:{title:"ویژگی​های ناحیهٴ متنی",cols:"ستون​ها",rows:"سطرها"},textfield:{title:"ویژگی​های فیلد متنی",name:"نام",value:"مقدار",charWidth:"پهنای نویسه",maxChars:"بیشینهٴ نویسه​ها",required:"Required", +type:"نوع",typeText:"متن",typePass:"گذرواژه",typeEmail:"ایمیل",typeSearch:"جستجو",typeTel:"شماره تلفن",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fi.js new file mode 100644 index 0000000..220ba80 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","fi",{button:{title:"Painikkeen ominaisuudet",text:"Teksti (arvo)",type:"Tyyppi",typeBtn:"Painike",typeSbm:"Lähetä",typeRst:"Tyhjennä"},checkboxAndRadio:{checkboxTitle:"Valintaruudun ominaisuudet",radioTitle:"Radiopainikkeen ominaisuudet",value:"Arvo",selected:"Valittu",required:"Required"},form:{title:"Lomakkeen ominaisuudet",menu:"Lomakkeen ominaisuudet",action:"Toiminto",method:"Tapa",encoding:"Enkoodaus"},hidden:{title:"Piilokentän ominaisuudet",name:"Nimi",value:"Arvo"}, +select:{title:"Valintakentän ominaisuudet",selectInfo:"Info",opAvail:"Ominaisuudet",value:"Arvo",size:"Koko",lines:"Rivit",chkMulti:"Salli usea valinta",required:"Required",opText:"Teksti",opValue:"Arvo",btnAdd:"Lisää",btnModify:"Muuta",btnUp:"Ylös",btnDown:"Alas",btnSetValue:"Aseta valituksi",btnDelete:"Poista"},textarea:{title:"Tekstilaatikon ominaisuudet",cols:"Sarakkeita",rows:"Rivejä"},textfield:{title:"Tekstikentän ominaisuudet",name:"Nimi",value:"Arvo",charWidth:"Leveys",maxChars:"Maksimi merkkimäärä", +required:"Required",type:"Tyyppi",typeText:"Teksti",typePass:"Salasana",typeEmail:"Sähköposti",typeSearch:"Haku",typeTel:"Puhelinnumero",typeUrl:"Osoite"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fo.js new file mode 100644 index 0000000..75f3900 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fo.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","fo",{button:{title:"Eginleikar fyri knøtt",text:"Tekstur",type:"Slag",typeBtn:"Knøttur",typeSbm:"Send",typeRst:"Nullstilla"},checkboxAndRadio:{checkboxTitle:"Eginleikar fyri flugubein",radioTitle:"Eginleikar fyri radioknøtt",value:"Virði",selected:"Valt",required:"Required"},form:{title:"Eginleikar fyri Form",menu:"Eginleikar fyri Form",action:"Hending",method:"Háttur",encoding:"Encoding"},hidden:{title:"Eginleikar fyri fjaldan teig",name:"Navn",value:"Virði"},select:{title:"Eginleikar fyri valskrá", +selectInfo:"Upplýsingar",opAvail:"Tøkir møguleikar",value:"Virði",size:"Stødd",lines:"Linjur",chkMulti:"Loyv fleiri valmøguleikum samstundis",required:"Required",opText:"Tekstur",opValue:"Virði",btnAdd:"Legg afturat",btnModify:"Broyt",btnUp:"Upp",btnDown:"Niður",btnSetValue:"Set sum valt virði",btnDelete:"Strika"},textarea:{title:"Eginleikar fyri tekstumráði",cols:"kolonnur",rows:"røðir"},textfield:{title:"Eginleikar fyri tekstteig",name:"Navn",value:"Virði",charWidth:"Breidd (sjónlig tekn)",maxChars:"Mest loyvdu tekn", +required:"Required",type:"Slag",typeText:"Tekstur",typePass:"Loyniorð",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fr-ca.js new file mode 100644 index 0000000..36547ab --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fr-ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","fr-ca",{button:{title:"Propriétés du bouton",text:"Texte (Valeur)",type:"Type",typeBtn:"Bouton",typeSbm:"Soumettre",typeRst:"Réinitialiser"},checkboxAndRadio:{checkboxTitle:"Propriétés de la case à cocher",radioTitle:"Propriétés du bouton radio",value:"Valeur",selected:"Sélectionné",required:"Required"},form:{title:"Propriétés du formulaire",menu:"Propriétés du formulaire",action:"Action",method:"Méthode",encoding:"Encodage"},hidden:{title:"Propriétés du champ caché", +name:"Nom",value:"Valeur"},select:{title:"Propriétés du champ de sélection",selectInfo:"Info",opAvail:"Options disponibles",value:"Valeur",size:"Taille",lines:"lignes",chkMulti:"Permettre les sélections multiples",required:"Required",opText:"Texte",opValue:"Valeur",btnAdd:"Ajouter",btnModify:"Modifier",btnUp:"Monter",btnDown:"Descendre",btnSetValue:"Valeur sélectionnée",btnDelete:"Supprimer"},textarea:{title:"Propriétés de la zone de texte",cols:"Colonnes",rows:"Lignes"},textfield:{title:"Propriétés du champ texte", +name:"Nom",value:"Valeur",charWidth:"Largeur de caractères",maxChars:"Nombre maximum de caractères",required:"Required",type:"Type",typeText:"Texte",typePass:"Mot de passe",typeEmail:"Courriel",typeSearch:"Recherche",typeTel:"Numéro de téléphone",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fr.js new file mode 100644 index 0000000..f0bab2f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/fr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","fr",{button:{title:"Propriétés du bouton",text:"Texte (Value)",type:"Type",typeBtn:"Bouton",typeSbm:"Validation (submit)",typeRst:"Remise à zéro"},checkboxAndRadio:{checkboxTitle:"Propriétés de la case à cocher",radioTitle:"Propriétés du bouton Radio",value:"Valeur",selected:"Sélectionné",required:"Requis"},form:{title:"Propriétés du formulaire",menu:"Propriétés du formulaire",action:"Action",method:"Méthode",encoding:"Encodage"},hidden:{title:"Propriétés du champ caché", +name:"Nom",value:"Valeur"},select:{title:"Propriétés du menu déroulant",selectInfo:"Informations sur le menu déroulant",opAvail:"Options disponibles",value:"Valeur",size:"Taille",lines:"Lignes",chkMulti:"Permettre les sélections multiples",required:"Requis",opText:"Texte",opValue:"Valeur",btnAdd:"Ajouter",btnModify:"Modifier",btnUp:"Haut",btnDown:"Bas",btnSetValue:"Définir comme valeur sélectionnée",btnDelete:"Supprimer"},textarea:{title:"Propriétés de la zone de texte",cols:"Colonnes",rows:"Lignes"}, +textfield:{title:"Propriétés du champ texte",name:"Nom",value:"Valeur",charWidth:"Taille des caractères",maxChars:"Nombre maximum de caractères",required:"Requis",type:"Type",typeText:"Texte",typePass:"Mot de passe",typeEmail:"E-mail",typeSearch:"Rechercher",typeTel:"Numéro de téléphone",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/gl.js new file mode 100644 index 0000000..9c0a9bf --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/gl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","gl",{button:{title:"Propiedades do botón",text:"Texto (Valor)",type:"Tipo",typeBtn:"Botón",typeSbm:"Enviar",typeRst:"Restabelever"},checkboxAndRadio:{checkboxTitle:"Propiedades da caixa de selección",radioTitle:"Propiedades do botón de opción",value:"Valor",selected:"Seleccionado",required:"Requirido"},form:{title:"Propiedades do formulario",menu:"Propiedades do formulario",action:"Acción",method:"Método",encoding:"Codificación"},hidden:{title:"Propiedades do campo agochado", +name:"Nome",value:"Valor"},select:{title:"Propiedades do campo de selección",selectInfo:"Información",opAvail:"Opcións dispoñíbeis",value:"Valor",size:"Tamaño",lines:"liñas",chkMulti:"Permitir múltiplas seleccións",required:"Requirido",opText:"Texto",opValue:"Valor",btnAdd:"Engadir",btnModify:"Modificar",btnUp:"Subir",btnDown:"Baixar",btnSetValue:"Estabelecer como valor seleccionado",btnDelete:"Eliminar"},textarea:{title:"Propiedades da área de texto",cols:"Columnas",rows:"Filas"},textfield:{title:"Propiedades do campo de texto", +name:"Nome",value:"Valor",charWidth:"Largo do carácter",maxChars:"Núm. máximo de caracteres",required:"Requirido",type:"Tipo",typeText:"Texto",typePass:"Contrasinal",typeEmail:"Correo",typeSearch:"Buscar",typeTel:"Número de teléfono",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/gu.js new file mode 100644 index 0000000..0519aff --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/gu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","gu",{button:{title:"બટનના ગુણ",text:"ટેક્સ્ટ (વૅલ્યૂ)",type:"પ્રકાર",typeBtn:"બટન",typeSbm:"સબ્મિટ",typeRst:"રિસેટ"},checkboxAndRadio:{checkboxTitle:"ચેક બોક્સ ગુણ",radioTitle:"રેડિઓ બટનના ગુણ",value:"વૅલ્યૂ",selected:"સિલેક્ટેડ",required:"Required"},form:{title:"ફૉર્મ/પત્રકના ગુણ",menu:"ફૉર્મ/પત્રકના ગુણ",action:"ક્રિયા",method:"પદ્ધતિ",encoding:"અન્કોડીન્ગ"},hidden:{title:"ગુપ્ત ક્ષેત્રના ગુણ",name:"નામ",value:"વૅલ્યૂ"},select:{title:"પસંદગી ક્ષેત્રના ગુણ",selectInfo:"સૂચના", +opAvail:"ઉપલબ્ધ વિકલ્પ",value:"વૅલ્યૂ",size:"સાઇઝ",lines:"લીટીઓ",chkMulti:"એકથી વધારે પસંદ કરી શકો",required:"Required",opText:"ટેક્સ્ટ",opValue:"વૅલ્યૂ",btnAdd:"ઉમેરવું",btnModify:"બદલવું",btnUp:"ઉપર",btnDown:"નીચે",btnSetValue:"પસંદ કરલી વૅલ્યૂ સેટ કરો",btnDelete:"રદ કરવું"},textarea:{title:"ટેક્સ્ટ એઅરિઆ, શબ્દ વિસ્તારના ગુણ",cols:"કૉલમ/ઊભી કટાર",rows:"પંક્તિઓ"},textfield:{title:"ટેક્સ્ટ ફીલ્ડ, શબ્દ ક્ષેત્રના ગુણ",name:"નામ",value:"વૅલ્યૂ",charWidth:"કેરેક્ટરની પહોળાઈ",maxChars:"અધિકતમ કેરેક્ટર", +required:"Required",type:"ટાઇપ",typeText:"ટેક્સ્ટ",typePass:"પાસવર્ડ",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/he.js new file mode 100644 index 0000000..ee4cc14 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/he.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","he",{button:{title:"מאפייני כפתור",text:"טקסט (ערך)",type:"סוג",typeBtn:"כפתור",typeSbm:"שליחה",typeRst:"איפוס"},checkboxAndRadio:{checkboxTitle:"מאפייני תיבת סימון",radioTitle:"מאפייני לחצן אפשרויות",value:"ערך",selected:"מסומן",required:"Required"},form:{title:"מאפיני טופס",menu:"מאפיני טופס",action:"שלח אל",method:"סוג שליחה",encoding:"קידוד"},hidden:{title:"מאפיני שדה חבוי",name:"שם",value:"ערך"},select:{title:"מאפייני שדה בחירה",selectInfo:"מידע",opAvail:"אפשרויות זמינות", +value:"ערך",size:"גודל",lines:"שורות",chkMulti:"איפשור בחירות מרובות",required:"Required",opText:"טקסט",opValue:"ערך",btnAdd:"הוספה",btnModify:"שינוי",btnUp:"למעלה",btnDown:"למטה",btnSetValue:"קביעה כברירת מחדל",btnDelete:"מחיקה"},textarea:{title:"מאפייני איזור טקסט",cols:"עמודות",rows:"שורות"},textfield:{title:"מאפייני שדה טקסט",name:"שם",value:"ערך",charWidth:"רוחב לפי תווים",maxChars:"מקסימום תווים",required:"Required",type:"סוג",typeText:"טקסט",typePass:"סיסמה",typeEmail:'דוא"ל',typeSearch:"חיפוש", +typeTel:"מספר טלפון",typeUrl:"כתובת (URL)"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/hi.js new file mode 100644 index 0000000..91db479 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/hi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","hi",{button:{title:"बटन प्रॉपर्टीज़",text:"टेक्स्ट (वैल्यू)",type:"प्रकार",typeBtn:"बटन",typeSbm:"सब्मिट",typeRst:"रिसेट"},checkboxAndRadio:{checkboxTitle:"चॅक बॉक्स प्रॉपर्टीज़",radioTitle:"रेडिओ बटन प्रॉपर्टीज़",value:"वैल्यू",selected:"सॅलॅक्टॅड",required:"Required"},form:{title:"फ़ॉर्म प्रॉपर्टीज़",menu:"फ़ॉर्म प्रॉपर्टीज़",action:"क्रिया",method:"तरीका",encoding:"Encoding"},hidden:{title:"गुप्त फ़ील्ड प्रॉपर्टीज़",name:"नाम",value:"वैल्यू"},select:{title:"चुनाव फ़ील्ड प्रॉपर्टीज़", +selectInfo:"सूचना",opAvail:"उपलब्ध विकल्प",value:"वैल्यू",size:"साइज़",lines:"पंक्तियाँ",chkMulti:"एक से ज्यादा विकल्प चुनने दें",required:"Required",opText:"टेक्स्ट",opValue:"वैल्यू",btnAdd:"जोड़ें",btnModify:"बदलें",btnUp:"ऊपर",btnDown:"नीचे",btnSetValue:"चुनी गई वैल्यू सॅट करें",btnDelete:"डिलीट"},textarea:{title:"टेक्स्त एरिया प्रॉपर्टीज़",cols:"कालम",rows:"पंक्तियां"},textfield:{title:"टेक्स्ट फ़ील्ड प्रॉपर्टीज़",name:"नाम",value:"वैल्यू",charWidth:"करॅक्टर की चौढ़ाई",maxChars:"अधिकतम करॅक्टर",required:"Required", +type:"टाइप",typeText:"टेक्स्ट",typePass:"पास्वर्ड",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/hr.js new file mode 100644 index 0000000..7041f32 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/hr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","hr",{button:{title:"Button svojstva",text:"Tekst (vrijednost)",type:"Vrsta",typeBtn:"Gumb",typeSbm:"Pošalji",typeRst:"Poništi"},checkboxAndRadio:{checkboxTitle:"Checkbox svojstva",radioTitle:"Radio Button svojstva",value:"Vrijednost",selected:"Odabrano",required:"Required"},form:{title:"Form svojstva",menu:"Form svojstva",action:"Akcija",method:"Metoda",encoding:"Encoding"},hidden:{title:"Hidden Field svojstva",name:"Ime",value:"Vrijednost"},select:{title:"Selection svojstva", +selectInfo:"Info",opAvail:"Dostupne opcije",value:"Vrijednost",size:"Veličina",lines:"linija",chkMulti:"Dozvoli višestruki odabir",required:"Required",opText:"Tekst",opValue:"Vrijednost",btnAdd:"Dodaj",btnModify:"Promijeni",btnUp:"Gore",btnDown:"Dolje",btnSetValue:"Postavi kao odabranu vrijednost",btnDelete:"Obriši"},textarea:{title:"Textarea svojstva",cols:"Kolona",rows:"Redova"},textfield:{title:"Text Field svojstva",name:"Ime",value:"Vrijednost",charWidth:"Širina",maxChars:"Najviše karaktera", +required:"Required",type:"Vrsta",typeText:"Tekst",typePass:"Šifra",typeEmail:"Email",typeSearch:"Traži",typeTel:"Broj telefona",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/hu.js new file mode 100644 index 0000000..8a12f31 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/hu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","hu",{button:{title:"Gomb tulajdonságai",text:"Szöveg (Érték)",type:"Típus",typeBtn:"Gomb",typeSbm:"Küldés",typeRst:"Alaphelyzet"},checkboxAndRadio:{checkboxTitle:"Jelölőnégyzet tulajdonságai",radioTitle:"Választógomb tulajdonságai",value:"Érték",selected:"Kiválasztott",required:"Required"},form:{title:"Űrlap tulajdonságai",menu:"Űrlap tulajdonságai",action:"Adatfeldolgozást végző hivatkozás",method:"Adatküldés módja",encoding:"Kódolás"},hidden:{title:"Rejtett mező tulajdonságai", +name:"Név",value:"Érték"},select:{title:"Legördülő lista tulajdonságai",selectInfo:"Alaptulajdonságok",opAvail:"Elérhető opciók",value:"Érték",size:"Méret",lines:"sor",chkMulti:"több sor is kiválasztható",required:"Required",opText:"Szöveg",opValue:"Érték",btnAdd:"Hozzáad",btnModify:"Módosít",btnUp:"Fel",btnDown:"Le",btnSetValue:"Legyen az alapértelmezett érték",btnDelete:"Töröl"},textarea:{title:"Szövegterület tulajdonságai",cols:"Karakterek száma egy sorban",rows:"Sorok száma"},textfield:{title:"Szövegmező tulajdonságai", +name:"Név",value:"Érték",charWidth:"Megjelenített karakterek száma",maxChars:"Maximális karakterszám",required:"Required",type:"Típus",typeText:"Szöveg",typePass:"Jelszó",typeEmail:"Ímél",typeSearch:"Keresés",typeTel:"Telefonszám",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/id.js new file mode 100644 index 0000000..9ead411 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/id.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","id",{button:{title:"Button Properties",text:"Teks (Nilai)",type:"Tipe",typeBtn:"Tombol",typeSbm:"Menyerahkan",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Checkbox Properties",radioTitle:"Radio Button Properties",value:"Nilai",selected:"Terpilih",required:"Required"},form:{title:"Form Properties",menu:"Form Properties",action:"Aksi",method:"Metode",encoding:"Encoding"},hidden:{title:"Hidden Field Properties",name:"Nama",value:"Nilai"},select:{title:"Selection Field Properties", +selectInfo:"Select Info",opAvail:"Available Options",value:"Nilai",size:"Ukuran",lines:"garis",chkMulti:"Izinkan pemilihan ganda",required:"Required",opText:"Teks",opValue:"Nilai",btnAdd:"Tambah",btnModify:"Modifikasi",btnUp:"Atas",btnDown:"Bawah",btnSetValue:"Set as selected value",btnDelete:"Hapus"},textarea:{title:"Textarea Properties",cols:"Kolom",rows:"Baris"},textfield:{title:"Text Field Properties",name:"Name",value:"Nilai",charWidth:"Character Width",maxChars:"Maximum Characters",required:"Required", +type:"Tipe",typeText:"Teks",typePass:"Kata kunci",typeEmail:"Surel",typeSearch:"Cari",typeTel:"Nomor Telepon",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/is.js new file mode 100644 index 0000000..f40e4fe --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/is.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","is",{button:{title:"Eigindi hnapps",text:"Texti",type:"Gerð",typeBtn:"Hnappur",typeSbm:"Staðfesta",typeRst:"Hreinsa"},checkboxAndRadio:{checkboxTitle:"Eigindi markreits",radioTitle:"Eigindi valhnapps",value:"Gildi",selected:"Valið",required:"Required"},form:{title:"Eigindi innsláttarforms",menu:"Eigindi innsláttarforms",action:"Aðgerð",method:"Aðferð",encoding:"Encoding"},hidden:{title:"Eigindi falins svæðis",name:"Nafn",value:"Gildi"},select:{title:"Eigindi lista", +selectInfo:"Upplýsingar",opAvail:"Kostir",value:"Gildi",size:"Stærð",lines:"línur",chkMulti:"Leyfa fleiri kosti",required:"Required",opText:"Texti",opValue:"Gildi",btnAdd:"Bæta við",btnModify:"Breyta",btnUp:"Upp",btnDown:"Niður",btnSetValue:"Merkja sem valið",btnDelete:"Eyða"},textarea:{title:"Eigindi textasvæðis",cols:"Dálkar",rows:"Línur"},textfield:{title:"Eigindi textareits",name:"Nafn",value:"Gildi",charWidth:"Breidd (leturtákn)",maxChars:"Hámarksfjöldi leturtákna",required:"Required",type:"Gerð", +typeText:"Texti",typePass:"Lykilorð",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"Vefslóð"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/it.js new file mode 100644 index 0000000..29132f1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/it.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","it",{button:{title:"Proprietà bottone",text:"Testo (Valore)",type:"Tipo",typeBtn:"Bottone",typeSbm:"Invio",typeRst:"Annulla"},checkboxAndRadio:{checkboxTitle:"Proprietà checkbox",radioTitle:"Proprietà radio button",value:"Valore",selected:"Selezionato",required:"Richiesto"},form:{title:"Proprietà modulo",menu:"Proprietà modulo",action:"Azione",method:"Metodo",encoding:"Codifica"},hidden:{title:"Proprietà campo nascosto",name:"Nome",value:"Valore"},select:{title:"Proprietà menu di selezione", +selectInfo:"Info",opAvail:"Opzioni disponibili",value:"Valore",size:"Dimensione",lines:"righe",chkMulti:"Permetti selezione multipla",required:"Richiesto",opText:"Testo",opValue:"Valore",btnAdd:"Aggiungi",btnModify:"Modifica",btnUp:"Su",btnDown:"Gi",btnSetValue:"Imposta come predefinito",btnDelete:"Rimuovi"},textarea:{title:"Proprietà area di testo",cols:"Colonne",rows:"Righe"},textfield:{title:"Proprietà campo di testo",name:"Nome",value:"Valore",charWidth:"Larghezza",maxChars:"Numero massimo di caratteri", +required:"Richiesto",type:"Tipo",typeText:"Testo",typePass:"Password",typeEmail:"Email",typeSearch:"Cerca",typeTel:"Numero di telefono",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ja.js new file mode 100644 index 0000000..d061950 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ja.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("forms","ja",{button:{title:"ボタン プロパティ",text:"テキスト (値)",type:"タイプ",typeBtn:"ボタン",typeSbm:"送信",typeRst:"リセット"},checkboxAndRadio:{checkboxTitle:"チェックボックスのプロパティ",radioTitle:"ラジオボタンのプロパティ",value:"値",selected:"選択済み",required:"Required"},form:{title:"フォームのプロパティ",menu:"フォームのプロパティ",action:"アクション (action)",method:"メソッド (method)",encoding:"エンコード方式 (encoding)"},hidden:{title:"不可視フィールド プロパティ",name:"名前 (name)",value:"値 (value)"},select:{title:"選択フィールドのプロパティ",selectInfo:"情報",opAvail:"利用可能なオプション", +value:"選択項目値",size:"サイズ",lines:"行",chkMulti:"複数選択を許可",required:"Required",opText:"選択項目名",opValue:"値",btnAdd:"追加",btnModify:"編集",btnUp:"上へ",btnDown:"下へ",btnSetValue:"選択した値を設定",btnDelete:"削除"},textarea:{title:"テキストエリア プロパティ",cols:"列",rows:"行"},textfield:{title:"1行テキスト プロパティ",name:"名前",value:"値",charWidth:"サイズ",maxChars:"最大長",required:"Required",type:"タイプ",typeText:"テキスト",typePass:"パスワード入力",typeEmail:"メール",typeSearch:"検索",typeTel:"電話番号",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ka.js new file mode 100644 index 0000000..d2c4a04 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ka.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","ka",{button:{title:"ღილაკის პარამეტრები",text:"ტექსტი",type:"ტიპი",typeBtn:"ღილაკი",typeSbm:"გაგზავნა",typeRst:"გასუფთავება"},checkboxAndRadio:{checkboxTitle:"მონიშვნის ღილაკის (Checkbox) პარამეტრები",radioTitle:"ასარჩევი ღილაკის (Radio) პარამეტრები",value:"ტექსტი",selected:"არჩეული",required:"Required"},form:{title:"ფორმის პარამეტრები",menu:"ფორმის პარამეტრები",action:"ქმედება",method:"მეთოდი",encoding:"კოდირება"},hidden:{title:"მალული ველის პარამეტრები",name:"სახელი", +value:"მნიშვნელობა"},select:{title:"არჩევის ველის პარამეტრები",selectInfo:"ინფორმაცია",opAvail:"შესაძლებელი ვარიანტები",value:"მნიშვნელობა",size:"ზომა",lines:"ხაზები",chkMulti:"მრავლობითი არჩევანის საშუალება",required:"Required",opText:"ტექსტი",opValue:"მნიშვნელობა",btnAdd:"დამატება",btnModify:"შეცვლა",btnUp:"ზემოთ",btnDown:"ქვემოთ",btnSetValue:"ამორჩეულ მნიშვნელოვნად დაყენება",btnDelete:"წაშლა"},textarea:{title:"ტექსტური არის პარამეტრები",cols:"სვეტები",rows:"სტრიქონები"},textfield:{title:"ტექსტური ველის პარამეტრები", +name:"სახელი",value:"მნიშვნელობა",charWidth:"სიმბოლოს ზომა",maxChars:"ასოების მაქსიმალური ოდენობა",required:"Required",type:"ტიპი",typeText:"ტექსტი",typePass:"პაროლი",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/km.js new file mode 100644 index 0000000..de233cc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/km.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","km",{button:{title:"លក្ខណៈ​ប៊ូតុង",text:"អត្ថបទ (តម្លៃ)",type:"ប្រភេទ",typeBtn:"ប៊ូតុង",typeSbm:"ដាក់ស្នើ",typeRst:"កំណត់​ឡើង​វិញ"},checkboxAndRadio:{checkboxTitle:"លក្ខណៈ​ប្រអប់​ធីក",radioTitle:"លក្ខនៈ​ប៊ូតុង​មូល",value:"តម្លៃ",selected:"បាន​ជ្រើស",required:"Required"},form:{title:"លក្ខណៈ​បែបបទ",menu:"លក្ខណៈ​បែបបទ",action:"សកម្មភាព",method:"វិធីសាស្ត្រ",encoding:"ការ​អ៊ិនកូដ"},hidden:{title:"លក្ខណៈ​វាល​កំបាំង",name:"ឈ្មោះ",value:"តម្លៃ"},select:{title:"លក្ខណៈ​វាល​ជម្រើស", +selectInfo:"ព័ត៌មាន​ជម្រើស",opAvail:"ជម្រើស​ដែល​មាន",value:"តម្លៃ",size:"ទំហំ",lines:"បន្ទាត់",chkMulti:"អនុញ្ញាត​ពហុ​ជម្រើស",required:"Required",opText:"អត្ថបទ",opValue:"តម្លៃ",btnAdd:"បន្ថែម",btnModify:"ផ្លាស់ប្តូរ",btnUp:"លើ",btnDown:"ក្រោម",btnSetValue:"កំណត់​ជា​តម្លៃ​ដែល​បាន​ជ្រើស",btnDelete:"លុប"},textarea:{title:"លក្ខណៈ​ប្រអប់​អត្ថបទ",cols:"ជួរឈរ",rows:"ជួរដេក"},textfield:{title:"លក្ខណៈ​វាល​អត្ថបទ",name:"ឈ្មោះ",value:"តម្លៃ",charWidth:"ទទឹង​តួ​អក្សរ",maxChars:"អក្សរអតិបរិមា",required:"Required", +type:"ប្រភេទ",typeText:"អត្ថបទ",typePass:"ពាក្យសម្ងាត់",typeEmail:"អ៊ីមែល",typeSearch:"ស្វែង​រក",typeTel:"លេខ​ទូរសព្ទ",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ko.js new file mode 100644 index 0000000..806c20d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ko.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("forms","ko",{button:{title:"버튼 속성",text:"글자 (값)",type:"종류",typeBtn:"버튼",typeSbm:"제출",typeRst:"재설정"},checkboxAndRadio:{checkboxTitle:"체크 박스 속성",radioTitle:"라디오 버튼 속성",value:"값",selected:"선택됨",required:"필수 항목"},form:{title:"폼 속성",menu:"폼 속성",action:"실행 경로(Action)",method:"방법(Method)",encoding:"인코딩"},hidden:{title:"숨은 입력 칸 속성",name:"이름",value:"값"},select:{title:"선택 목록 속성",selectInfo:"선택 정보",opAvail:"옵션",value:"값",size:"크기",lines:"줄",chkMulti:"여러 항목 선택 허용",required:"필수 항목",opText:"이름", +opValue:"값",btnAdd:"추가",btnModify:"수정",btnUp:"위",btnDown:"아래",btnSetValue:"선택된 것으로 설정",btnDelete:"삭제"},textarea:{title:"여러 줄 입력 칸 속성",cols:"칸 수",rows:"줄 수"},textfield:{title:"한 줄 입력 칸 속성",name:"이름",value:"값",charWidth:"글자 너비",maxChars:"최대 글자 수",required:"필수 항목",type:"형식",typeText:"문자열",typePass:"비밀번호",typeEmail:"이메일",typeSearch:"검색",typeTel:"전화번호",typeUrl:"웹 주소(URL)"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ku.js new file mode 100644 index 0000000..c839334 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ku.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","ku",{button:{title:"خاسیەتی دوگمە",text:"(نرخی) دەق",type:"جۆر",typeBtn:"دوگمە",typeSbm:"بنێرە",typeRst:"ڕێکخستنەوە"},checkboxAndRadio:{checkboxTitle:"خاسیەتی چووارگۆشی پشکنین",radioTitle:"خاسیەتی جێگرەوەی دوگمە",value:"نرخ",selected:"هەڵبژاردرا",required:"Required"},form:{title:"خاسیەتی داڕشتە",menu:"خاسیەتی داڕشتە",action:"کردار",method:"ڕێگە",encoding:"بەکۆدکەر"},hidden:{title:"خاسیەتی خانەی شاردراوە",name:"ناو",value:"نرخ"},select:{title:"هەڵبژاردەی خاسیەتی خانە", +selectInfo:"زانیاری",opAvail:"هەڵبژاردەی لەبەردەستدابوون",value:"نرخ",size:"گەورەیی",lines:"هێڵەکان",chkMulti:"ڕێدان بەفره هەڵبژارده",required:"Required",opText:"دەق",opValue:"نرخ",btnAdd:"زیادکردن",btnModify:"گۆڕانکاری",btnUp:"سەرەوه",btnDown:"خوارەوە",btnSetValue:"دابنێ وەك نرخێکی هەڵبژێردراو",btnDelete:"سڕینەوه"},textarea:{title:"خاسیەتی ڕووبەری دەق",cols:"ستوونەکان",rows:"ڕیزەکان"},textfield:{title:"خاسیەتی خانەی دەق",name:"ناو",value:"نرخ",charWidth:"پانی نووسە",maxChars:"ئەوپەڕی نووسە",required:"Required", +type:"جۆر",typeText:"دەق",typePass:"پێپەڕەوشە",typeEmail:"ئیمەیل",typeSearch:"گەڕان",typeTel:"ژمارەی تەلەفۆن",typeUrl:"ناونیشانی بەستەر"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/lt.js new file mode 100644 index 0000000..47cd38d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/lt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","lt",{button:{title:"Mygtuko savybės",text:"Tekstas (Reikšmė)",type:"Tipas",typeBtn:"Mygtukas",typeSbm:"Siųsti",typeRst:"Išvalyti"},checkboxAndRadio:{checkboxTitle:"Žymimojo langelio savybės",radioTitle:"Žymimosios akutės savybės",value:"Reikšmė",selected:"Pažymėtas",required:"Required"},form:{title:"Formos savybės",menu:"Formos savybės",action:"Veiksmas",method:"Metodas",encoding:"Kodavimas"},hidden:{title:"Nerodomo lauko savybės",name:"Vardas",value:"Reikšmė"},select:{title:"Atrankos lauko savybės", +selectInfo:"Informacija",opAvail:"Galimos parinktys",value:"Reikšmė",size:"Dydis",lines:"eilučių",chkMulti:"Leisti daugeriopą atranką",required:"Required",opText:"Tekstas",opValue:"Reikšmė",btnAdd:"Įtraukti",btnModify:"Modifikuoti",btnUp:"Aukštyn",btnDown:"Žemyn",btnSetValue:"Laikyti pažymėta reikšme",btnDelete:"Trinti"},textarea:{title:"Teksto srities savybės",cols:"Ilgis",rows:"Plotis"},textfield:{title:"Teksto lauko savybės",name:"Vardas",value:"Reikšmė",charWidth:"Ilgis simboliais",maxChars:"Maksimalus simbolių skaičius", +required:"Required",type:"Tipas",typeText:"Tekstas",typePass:"Slaptažodis",typeEmail:"El. paštas",typeSearch:"Paieška",typeTel:"Telefono numeris",typeUrl:"Nuoroda"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/lv.js new file mode 100644 index 0000000..54327f3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/lv.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","lv",{button:{title:"Pogas īpašības",text:"Teksts (vērtība)",type:"Tips",typeBtn:"Poga",typeSbm:"Nosūtīt",typeRst:"Atcelt"},checkboxAndRadio:{checkboxTitle:"Atzīmēšanas kastītes īpašības",radioTitle:"Izvēles poga īpašības",value:"Vērtība",selected:"Iezīmēts",required:"Required"},form:{title:"Formas īpašības",menu:"Formas īpašības",action:"Darbība",method:"Metode",encoding:"Kodējums"},hidden:{title:"Paslēptās teksta rindas īpašības",name:"Nosaukums",value:"Vērtība"}, +select:{title:"Iezīmēšanas lauka īpašības",selectInfo:"Informācija",opAvail:"Pieejamās iespējas",value:"Vērtība",size:"Izmērs",lines:"rindas",chkMulti:"Atļaut vairākus iezīmējumus",required:"Required",opText:"Teksts",opValue:"Vērtība",btnAdd:"Pievienot",btnModify:"Veikt izmaiņas",btnUp:"Augšup",btnDown:"Lejup",btnSetValue:"Noteikt kā iezīmēto vērtību",btnDelete:"Dzēst"},textarea:{title:"Teksta laukuma īpašības",cols:"Kolonnas",rows:"Rindas"},textfield:{title:"Teksta rindas īpašības",name:"Nosaukums", +value:"Vērtība",charWidth:"Simbolu platums",maxChars:"Simbolu maksimālais daudzums",required:"Required",type:"Tips",typeText:"Teksts",typePass:"Parole",typeEmail:"Epasts",typeSearch:"Meklēt",typeTel:"Tālruņa numurs",typeUrl:"Adrese"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/mk.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/mk.js new file mode 100644 index 0000000..c8ed570 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/mk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","mk",{button:{title:"Button Properties",text:"Text (Value)",type:"Type",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Checkbox Properties",radioTitle:"Radio Button Properties",value:"Value",selected:"Selected",required:"Required"},form:{title:"Form Properties",menu:"Form Properties",action:"Action",method:"Method",encoding:"Encoding"},hidden:{title:"Hidden Field Properties",name:"Name",value:"Value"},select:{title:"Selection Field Properties", +selectInfo:"Select Info",opAvail:"Available Options",value:"Value",size:"Size",lines:"lines",chkMulti:"Allow multiple selections",required:"Required",opText:"Text",opValue:"Value",btnAdd:"Add",btnModify:"Modify",btnUp:"Up",btnDown:"Down",btnSetValue:"Set as selected value",btnDelete:"Delete"},textarea:{title:"Textarea Properties",cols:"Columns",rows:"Rows"},textfield:{title:"Text Field Properties",name:"Name",value:"Value",charWidth:"Character Width",maxChars:"Maximum Characters",required:"Required", +type:"Type",typeText:"Text",typePass:"Password",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/mn.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/mn.js new file mode 100644 index 0000000..8a62bf1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/mn.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","mn",{button:{title:"Товчны шинж чанар",text:"Тэкст (Утга)",type:"Төрөл",typeBtn:"Товч",typeSbm:"Submit",typeRst:"Болих"},checkboxAndRadio:{checkboxTitle:"Чекбоксны шинж чанар",radioTitle:"Радио товчны шинж чанар",value:"Утга",selected:"Сонгогдсон",required:"Required"},form:{title:"Форм шинж чанар",menu:"Форм шинж чанар",action:"Үйлдэл",method:"Арга",encoding:"Encoding"},hidden:{title:"Нууц талбарын шинж чанар",name:"Нэр",value:"Утга"},select:{title:"Согогч талбарын шинж чанар", +selectInfo:"Мэдээлэл",opAvail:"Идвэхтэй сонголт",value:"Утга",size:"Хэмжээ",lines:"Мөр",chkMulti:"Олон зүйл зэрэг сонгохыг зөвшөөрөх",required:"Required",opText:"Тэкст",opValue:"Утга",btnAdd:"Нэмэх",btnModify:"Өөрчлөх",btnUp:"Дээш",btnDown:"Доош",btnSetValue:"Сонгогдсан утга оноох",btnDelete:"Устгах"},textarea:{title:"Текст орчны шинж чанар",cols:"Багана",rows:"Мөр"},textfield:{title:"Текст талбарын шинж чанар",name:"Нэр",value:"Утга",charWidth:"Тэмдэгтын өргөн",maxChars:"Хамгийн их тэмдэгт",required:"Required", +type:"Төрөл",typeText:"Текст",typePass:"Нууц үг",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"цахим хуудасны хаяг (URL)"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ms.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ms.js new file mode 100644 index 0000000..342c091 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ms.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","ms",{button:{title:"Ciri-ciri Butang",text:"Teks (Nilai)",type:"Jenis",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Ciri-ciri Checkbox",radioTitle:"Ciri-ciri Butang Radio",value:"Nilai",selected:"Dipilih",required:"Required"},form:{title:"Ciri-ciri Borang",menu:"Ciri-ciri Borang",action:"Tindakan borang",method:"Cara borang dihantar",encoding:"Encoding"},hidden:{title:"Ciri-ciri Field Tersembunyi",name:"Nama",value:"Nilai"}, +select:{title:"Ciri-ciri Selection Field",selectInfo:"Select Info",opAvail:"Pilihan sediada",value:"Nilai",size:"Saiz",lines:"garisan",chkMulti:"Benarkan pilihan pelbagai",required:"Required",opText:"Teks",opValue:"Nilai",btnAdd:"Tambah Pilihan",btnModify:"Ubah Pilihan",btnUp:"Naik ke atas",btnDown:"Turun ke bawah",btnSetValue:"Set sebagai nilai terpilih",btnDelete:"Padam"},textarea:{title:"Ciri-ciri Textarea",cols:"Lajur",rows:"Baris"},textfield:{title:"Ciri-ciri Text Field",name:"Nama",value:"Nilai", +charWidth:"Lebar isian",maxChars:"Isian Maksimum",required:"Required",type:"Jenis",typeText:"Teks",typePass:"Kata Laluan",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/nb.js new file mode 100644 index 0000000..634ea9e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/nb.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","nb",{button:{title:"Egenskaper for knapp",text:"Tekst (verdi)",type:"Type",typeBtn:"Knapp",typeSbm:"Send",typeRst:"Nullstill"},checkboxAndRadio:{checkboxTitle:"Egenskaper for avmerkingsboks",radioTitle:"Egenskaper for alternativknapp",value:"Verdi",selected:"Valgt",required:"Påkrevd"},form:{title:"Egenskaper for skjema",menu:"Egenskaper for skjema",action:"Handling",method:"Metode",encoding:"Encoding"},hidden:{title:"Egenskaper for skjult felt",name:"Navn",value:"Verdi"}, +select:{title:"Egenskaper for rullegardinliste",selectInfo:"Info",opAvail:"Tilgjenglige alternativer",value:"Verdi",size:"Størrelse",lines:"Linjer",chkMulti:"Tillat flervalg",required:"Påkrevd",opText:"Tekst",opValue:"Verdi",btnAdd:"Legg til",btnModify:"Endre",btnUp:"Opp",btnDown:"Ned",btnSetValue:"Sett som valgt",btnDelete:"Slett"},textarea:{title:"Egenskaper for tekstområde",cols:"Kolonner",rows:"Rader"},textfield:{title:"Egenskaper for tekstfelt",name:"Navn",value:"Verdi",charWidth:"Tegnbredde", +maxChars:"Maks antall tegn",required:"Påkrevd",type:"Type",typeText:"Tekst",typePass:"Passord",typeEmail:"Epost",typeSearch:"Søk",typeTel:"Telefonnummer",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/nl.js new file mode 100644 index 0000000..afc2118 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/nl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","nl",{button:{title:"Eigenschappen knop",text:"Tekst (waarde)",type:"Soort",typeBtn:"Knop",typeSbm:"Versturen",typeRst:"Leegmaken"},checkboxAndRadio:{checkboxTitle:"Eigenschappen aanvinkvakje",radioTitle:"Eigenschappen selectievakje",value:"Waarde",selected:"Geselecteerd",required:"Vereist"},form:{title:"Eigenschappen formulier",menu:"Eigenschappen formulier",action:"Actie",method:"Methode",encoding:"Codering"},hidden:{title:"Eigenschappen verborgen veld",name:"Naam", +value:"Waarde"},select:{title:"Eigenschappen selectieveld",selectInfo:"Informatie",opAvail:"Beschikbare opties",value:"Waarde",size:"Grootte",lines:"Regels",chkMulti:"Gecombineerde selecties toestaan",required:"Vereist",opText:"Tekst",opValue:"Waarde",btnAdd:"Toevoegen",btnModify:"Wijzigen",btnUp:"Omhoog",btnDown:"Omlaag",btnSetValue:"Als geselecteerde waarde instellen",btnDelete:"Verwijderen"},textarea:{title:"Eigenschappen tekstvak",cols:"Kolommen",rows:"Rijen"},textfield:{title:"Eigenschappen tekstveld", +name:"Naam",value:"Waarde",charWidth:"Breedte (tekens)",maxChars:"Maximum aantal tekens",required:"Vereist",type:"Soort",typeText:"Tekst",typePass:"Wachtwoord",typeEmail:"E-mail",typeSearch:"Zoeken",typeTel:"Telefoonnummer",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/no.js new file mode 100644 index 0000000..0be43b6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/no.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","no",{button:{title:"Egenskaper for knapp",text:"Tekst (verdi)",type:"Type",typeBtn:"Knapp",typeSbm:"Send",typeRst:"Nullstill"},checkboxAndRadio:{checkboxTitle:"Egenskaper for avmerkingsboks",radioTitle:"Egenskaper for alternativknapp",value:"Verdi",selected:"Valgt",required:"Required"},form:{title:"Egenskaper for skjema",menu:"Egenskaper for skjema",action:"Handling",method:"Metode",encoding:"Encoding"},hidden:{title:"Egenskaper for skjult felt",name:"Navn",value:"Verdi"}, +select:{title:"Egenskaper for rullegardinliste",selectInfo:"Info",opAvail:"Tilgjenglige alternativer",value:"Verdi",size:"Størrelse",lines:"Linjer",chkMulti:"Tillat flervalg",required:"Required",opText:"Tekst",opValue:"Verdi",btnAdd:"Legg til",btnModify:"Endre",btnUp:"Opp",btnDown:"Ned",btnSetValue:"Sett som valgt",btnDelete:"Slett"},textarea:{title:"Egenskaper for tekstområde",cols:"Kolonner",rows:"Rader"},textfield:{title:"Egenskaper for tekstfelt",name:"Navn",value:"Verdi",charWidth:"Tegnbredde", +maxChars:"Maks antall tegn",required:"Required",type:"Type",typeText:"Tekst",typePass:"Passord",typeEmail:"Epost",typeSearch:"Søk",typeTel:"Telefonnummer",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/pl.js new file mode 100644 index 0000000..d26c8a3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/pl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","pl",{button:{title:"Właściwości przycisku",text:"Tekst (Wartość)",type:"Typ",typeBtn:"Przycisk",typeSbm:"Wyślij",typeRst:"Wyczyść"},checkboxAndRadio:{checkboxTitle:"Właściwości pola wyboru (checkbox)",radioTitle:"Właściwości przycisku opcji (radio)",value:"Wartość",selected:"Zaznaczone",required:"Wymagane"},form:{title:"Właściwości formularza",menu:"Właściwości formularza",action:"Akcja",method:"Metoda",encoding:"Kodowanie"},hidden:{title:"Właściwości pola ukrytego", +name:"Nazwa",value:"Wartość"},select:{title:"Właściwości listy wyboru",selectInfo:"Informacje",opAvail:"Dostępne opcje",value:"Wartość",size:"Rozmiar",lines:"wierszy",chkMulti:"Wielokrotny wybór",required:"Wymagane",opText:"Tekst",opValue:"Wartość",btnAdd:"Dodaj",btnModify:"Zmień",btnUp:"Do góry",btnDown:"Do dołu",btnSetValue:"Ustaw jako zaznaczoną",btnDelete:"Usuń"},textarea:{title:"Właściwości obszaru tekstowego",cols:"Liczba kolumn",rows:"Liczba wierszy"},textfield:{title:"Właściwości pola tekstowego", +name:"Nazwa",value:"Wartość",charWidth:"Szerokość w znakach",maxChars:"Szerokość maksymalna",required:"Wymagane",type:"Typ",typeText:"Tekst",typePass:"Hasło",typeEmail:"Email",typeSearch:"Szukaj",typeTel:"Numer telefonu",typeUrl:"Adres URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/pt-br.js new file mode 100644 index 0000000..2de70cb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/pt-br.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","pt-br",{button:{title:"Formatar Botão",text:"Texto (Valor)",type:"Tipo",typeBtn:"Botão",typeSbm:"Enviar",typeRst:"Limpar"},checkboxAndRadio:{checkboxTitle:"Formatar Caixa de Seleção",radioTitle:"Formatar Botão de Opção",value:"Valor",selected:"Selecionado",required:"Required"},form:{title:"Formatar Formulário",menu:"Formatar Formulário",action:"Ação",method:"Método",encoding:"Codificação"},hidden:{title:"Formatar Campo Oculto",name:"Nome",value:"Valor"},select:{title:"Formatar Caixa de Listagem", +selectInfo:"Informações",opAvail:"Opções disponíveis",value:"Valor",size:"Tamanho",lines:"linhas",chkMulti:"Permitir múltiplas seleções",required:"Required",opText:"Texto",opValue:"Valor",btnAdd:"Adicionar",btnModify:"Modificar",btnUp:"Para cima",btnDown:"Para baixo",btnSetValue:"Definir como selecionado",btnDelete:"Remover"},textarea:{title:"Formatar Área de Texto",cols:"Colunas",rows:"Linhas"},textfield:{title:"Formatar Caixa de Texto",name:"Nome",value:"Valor",charWidth:"Comprimento (em caracteres)", +maxChars:"Número Máximo de Caracteres",required:"Required",type:"Tipo",typeText:"Texto",typePass:"Senha",typeEmail:"Email",typeSearch:"Busca",typeTel:"Número de Telefone",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/pt.js new file mode 100644 index 0000000..b6615cc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/pt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","pt",{button:{title:"Propriedades do Botão",text:"Texto (Valor)",type:"Tipo",typeBtn:"Botão",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Propriedades da Caixa de Verificação",radioTitle:"Propriedades do Botão de Opção",value:"Valor",selected:"Seleccionado",required:"Required"},form:{title:"Propriedades do Formulário",menu:"Propriedades do Formulário",action:"Acção",method:"Método",encoding:"Encoding"},hidden:{title:"Propriedades do Campo Escondido", +name:"Nome",value:"Valor"},select:{title:"Propriedades da Caixa de Combinação",selectInfo:"Informação",opAvail:"Opções Possíveis",value:"Valor",size:"Tamanho",lines:"linhas",chkMulti:"Permitir selecções múltiplas",required:"Required",opText:"Texto",opValue:"Valor",btnAdd:"Adicionar",btnModify:"Modificar",btnUp:"Para cima",btnDown:"Para baixo",btnSetValue:"Definir um valor por defeito",btnDelete:"Apagar"},textarea:{title:"Propriedades da Área de Texto",cols:"Colunas",rows:"Linhas"},textfield:{title:"Propriedades do Campo de Texto", +name:"Nome",value:"Valor",charWidth:"Tamanho do caracter",maxChars:"Nr. Máximo de Caracteres",required:"Required",type:"Tipo",typeText:"Texto",typePass:"Senha",typeEmail:"Email",typeSearch:"Pesquisar",typeTel:"Telefone",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ro.js new file mode 100644 index 0000000..8b760bd --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ro.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","ro",{button:{title:"Proprietăţi buton",text:"Text (Valoare)",type:"Tip",typeBtn:"Buton",typeSbm:"Trimite",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Proprietăţi bifă (Checkbox)",radioTitle:"Proprietăţi buton radio (Radio Button)",value:"Valoare",selected:"Selectat",required:"Required"},form:{title:"Proprietăţi formular (Form)",menu:"Proprietăţi formular (Form)",action:"Acţiune",method:"Metodă",encoding:"Encodare"},hidden:{title:"Proprietăţi câmp ascuns (Hidden Field)", +name:"Nume",value:"Valoare"},select:{title:"Proprietăţi câmp selecţie (Selection Field)",selectInfo:"Informaţii",opAvail:"Opţiuni disponibile",value:"Valoare",size:"Mărime",lines:"linii",chkMulti:"Permite selecţii multiple",required:"Required",opText:"Text",opValue:"Valoare",btnAdd:"Adaugă",btnModify:"Modifică",btnUp:"Sus",btnDown:"Jos",btnSetValue:"Setează ca valoare selectată",btnDelete:"Şterge"},textarea:{title:"Proprietăţi suprafaţă text (Textarea)",cols:"Coloane",rows:"Linii"},textfield:{title:"Proprietăţi câmp text (Text Field)", +name:"Nume",value:"Valoare",charWidth:"Lărgimea caracterului",maxChars:"Caractere maxime",required:"Required",type:"Tip",typeText:"Text",typePass:"Parolă",typeEmail:"Email",typeSearch:"Cauta",typeTel:"Numar de telefon",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ru.js new file mode 100644 index 0000000..d72110c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ru.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","ru",{button:{title:"Свойства кнопки",text:"Текст (Значение)",type:"Тип",typeBtn:"Кнопка",typeSbm:"Отправка",typeRst:"Сброс"},checkboxAndRadio:{checkboxTitle:"Свойства флаговой кнопки",radioTitle:"Свойства кнопки выбора",value:"Значение",selected:"Выбрано",required:"Required"},form:{title:"Свойства формы",menu:"Свойства формы",action:"Действие",method:"Метод",encoding:"Кодировка"},hidden:{title:"Свойства скрытого поля",name:"Имя",value:"Значение"},select:{title:"Свойства списка выбора", +selectInfo:"Информация о списке выбора",opAvail:"Доступные варианты",value:"Значение",size:"Размер",lines:"строк(и)",chkMulti:"Разрешить выбор нескольких вариантов",required:"Required",opText:"Текст",opValue:"Значение",btnAdd:"Добавить",btnModify:"Изменить",btnUp:"Поднять",btnDown:"Опустить",btnSetValue:"Пометить как выбранное",btnDelete:"Удалить"},textarea:{title:"Свойства многострочного текстового поля",cols:"Колонок",rows:"Строк"},textfield:{title:"Свойства текстового поля",name:"Имя",value:"Значение", +charWidth:"Ширина поля (в символах)",maxChars:"Макс. количество символов",required:"Required",type:"Тип содержимого",typeText:"Текст",typePass:"Пароль",typeEmail:"Email",typeSearch:"Поиск",typeTel:"Номер телефона",typeUrl:"Ссылка"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/si.js new file mode 100644 index 0000000..36b32ad --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/si.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","si",{button:{title:"බොත්තම් ගුණ",text:"වගන්තිය(වටිනාකම)",type:"වර්ගය",typeBtn:"බොත්තම",typeSbm:"යොමුකරනවා",typeRst:"නැවත ආරම්භකතත්වයට පත් කරනවා"},checkboxAndRadio:{checkboxTitle:"ලකුණු කිරීමේ කොටුවේ ලක්ෂණ",radioTitle:"Radio Button Properties",value:"Value",selected:"Selected",required:"Required"},form:{title:"පෝරමයේ ",menu:"පෝරමයේ ගුණ/",action:"ගන්නා පියවර",method:"ක්‍රමය",encoding:"කේතීකරණය"},hidden:{title:"සැඟවුණු ප්‍රදේශයේ ",name:"නම",value:"Value"},select:{title:"තේරීම් ප්‍රදේශයේ ", +selectInfo:"විස්තර තෝරන්න",opAvail:"ඉතුරුවී ඇති වීකල්ප",value:"Value",size:"විශාලත්වය",lines:"lines",chkMulti:"Allow multiple selections",required:"Required",opText:"Text",opValue:"Value",btnAdd:"Add",btnModify:"Modify",btnUp:"Up",btnDown:"Down",btnSetValue:"Set as selected value",btnDelete:"මකා දැම්ම"},textarea:{title:"Textarea Properties",cols:"සිරස් ",rows:"Rows"},textfield:{title:"Text Field Properties",name:"නම",value:"Value",charWidth:"Character Width",maxChars:"Maximum Characters",required:"Required", +type:"වර්ගය",typeText:"Text",typePass:"Password",typeEmail:"Email",typeSearch:"Search",typeTel:"Telephone Number",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sk.js new file mode 100644 index 0000000..fdb744b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","sk",{button:{title:"Vlastnosti tlačidla",text:"Text (Hodnota)",type:"Typ",typeBtn:"Tlačidlo",typeSbm:"Odoslať",typeRst:"Resetovať"},checkboxAndRadio:{checkboxTitle:"Vlastnosti zaškrtávacieho políčka",radioTitle:"Vlastnosti prepínača (radio button)",value:"Hodnota",selected:"Vybrané (selected)",required:"Required"},form:{title:"Vlastnosti formulára",menu:"Vlastnosti formulára",action:"Akcia (action)",method:"Metóda (method)",encoding:"Kódovanie (encoding)"},hidden:{title:"Vlastnosti skrytého poľa", +name:"Názov (name)",value:"Hodnota"},select:{title:"Vlastnosti rozbaľovacieho zoznamu",selectInfo:"Informácie o výbere",opAvail:"Dostupné možnosti",value:"Hodnota",size:"Veľkosť",lines:"riadkov",chkMulti:"Povoliť viacnásobný výber",required:"Required",opText:"Text",opValue:"Hodnota",btnAdd:"Pridať",btnModify:"Upraviť",btnUp:"Hore",btnDown:"Dole",btnSetValue:"Nastaviť ako vybranú hodnotu",btnDelete:"Vymazať"},textarea:{title:"Vlastnosti textovej oblasti (textarea)",cols:"Stĺpcov",rows:"Riadkov"},textfield:{title:"Vlastnosti textového poľa", +name:"Názov (name)",value:"Hodnota",charWidth:"Šírka poľa (podľa znakov)",maxChars:"Maximálny počet znakov",required:"Required",type:"Typ",typeText:"Text",typePass:"Heslo",typeEmail:"Email",typeSearch:"Hľadať",typeTel:"Telefónne číslo",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sl.js new file mode 100644 index 0000000..9c79b06 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","sl",{button:{title:"Lastnosti gumba",text:"Besedilo (Vrednost)",type:"Tip",typeBtn:"Gumb",typeSbm:"Potrdi",typeRst:"Ponastavi"},checkboxAndRadio:{checkboxTitle:"Lastnosti potrditvenega polja",radioTitle:"Lastnosti izbirnega polja",value:"Vrednost",selected:"Izbrano",required:"Required"},form:{title:"Lastnosti obrazca",menu:"Lastnosti obrazca",action:"Akcija",method:"Metoda",encoding:"Kodiranje znakov"},hidden:{title:"Lastnosti skritega polja",name:"Ime",value:"Vrednost"}, +select:{title:"Lastnosti spustnega seznama",selectInfo:"Podatki",opAvail:"Razpoložljive izbire",value:"Vrednost",size:"Velikost",lines:"vrstic",chkMulti:"Dovoli izbor večih vrstic",required:"Required",opText:"Besedilo",opValue:"Vrednost",btnAdd:"Dodaj",btnModify:"Spremeni",btnUp:"Gor",btnDown:"Dol",btnSetValue:"Postavi kot privzeto izbiro",btnDelete:"Izbriši"},textarea:{title:"Lastnosti vnosnega območja",cols:"Stolpcev",rows:"Vrstic"},textfield:{title:"Lastnosti vnosnega polja",name:"Ime",value:"Vrednost", +charWidth:"Dolžina",maxChars:"Največje število znakov",required:"Required",type:"Tip",typeText:"Besedilo",typePass:"Geslo",typeEmail:"E-pošta",typeSearch:"Iskanje",typeTel:"Telefonska Številka",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sq.js new file mode 100644 index 0000000..aee8b95 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sq.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","sq",{button:{title:"Rekuizitat e Pullës",text:"Teskti (Vlera)",type:"LLoji",typeBtn:"Buton",typeSbm:"Dërgo",typeRst:"Rikthe"},checkboxAndRadio:{checkboxTitle:"Rekuizitat e Kutizë Përzgjedhëse",radioTitle:"Rekuizitat e Pullës",value:"Vlera",selected:"Përzgjedhur",required:"Required"},form:{title:"Rekuizitat e Formës",menu:"Rekuizitat e Formës",action:"Veprim",method:"Metoda",encoding:"Kodimi"},hidden:{title:"Rekuizitat e Fushës së Fshehur",name:"Emër",value:"Vlera"}, +select:{title:"Rekuizitat e Fushës së Përzgjedhur",selectInfo:"Përzgjidh Informacionin",opAvail:"Opsionet e Mundshme",value:"Vlera",size:"Madhësia",lines:"rreshtat",chkMulti:"Lejo përzgjidhje të shumëfishta",required:"Required",opText:"Teksti",opValue:"Vlera",btnAdd:"Vendos",btnModify:"Ndrysho",btnUp:"Sipër",btnDown:"Poshtë",btnSetValue:"Bëje si vlerë të përzgjedhur",btnDelete:"Grise"},textarea:{title:"Rekuzitat e Fushës së Tekstit",cols:"Kolonat",rows:"Rreshtat"},textfield:{title:"Rekuizitat e Fushës së Tekstit", +name:"Emër",value:"Vlera",charWidth:"Gjerësia e Karakterit",maxChars:"Numri maksimal i karaktereve",required:"Required",type:"LLoji",typeText:"Teksti",typePass:"Fjalëkalimi",typeEmail:"Posta Elektronike",typeSearch:"Kërko",typeTel:"Numri i Telefonit",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sr-latn.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sr-latn.js new file mode 100644 index 0000000..7f34d26 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sr-latn.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","sr-latn",{button:{title:"Osobine dugmeta",text:"Tekst (vrednost)",type:"Tip",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Osobine polja za potvrdu",radioTitle:"Osobine radio-dugmeta",value:"Vrednost",selected:"Označeno",required:"Required"},form:{title:"Osobine forme",menu:"Osobine forme",action:"Akcija",method:"Metoda",encoding:"Encoding"},hidden:{title:"Osobine skrivenog polja",name:"Naziv",value:"Vrednost"},select:{title:"Osobine izbornog polja", +selectInfo:"Info",opAvail:"Dostupne opcije",value:"Vrednost",size:"Veličina",lines:"linija",chkMulti:"Dozvoli višestruku selekciju",required:"Required",opText:"Tekst",opValue:"Vrednost",btnAdd:"Dodaj",btnModify:"Izmeni",btnUp:"Gore",btnDown:"Dole",btnSetValue:"Podesi kao označenu vrednost",btnDelete:"Obriši"},textarea:{title:"Osobine zone teksta",cols:"Broj kolona",rows:"Broj redova"},textfield:{title:"Osobine tekstualnog polja",name:"Naziv",value:"Vrednost",charWidth:"Širina (karaktera)",maxChars:"Maksimalno karaktera", +required:"Required",type:"Tip",typeText:"Tekst",typePass:"Lozinka",typeEmail:"Email",typeSearch:"Pretraži",typeTel:"Broj telefona",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sr.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sr.js new file mode 100644 index 0000000..b315876 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","sr",{button:{title:"Особине дугмета",text:"Текст (вредност)",type:"Tип",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"Особине поља за потврду",radioTitle:"Особине радио-дугмета",value:"Вредност",selected:"Означено",required:"Required"},form:{title:"Особине форме",menu:"Особине форме",action:"Aкција",method:"Mетода",encoding:"Encoding"},hidden:{title:"Особине скривеног поља",name:"Назив",value:"Вредност"},select:{title:"Особине изборног поља", +selectInfo:"Инфо",opAvail:"Доступне опције",value:"Вредност",size:"Величина",lines:"линија",chkMulti:"Дозволи вишеструку селекцију",required:"Required",opText:"Текст",opValue:"Вредност",btnAdd:"Додај",btnModify:"Измени",btnUp:"Горе",btnDown:"Доле",btnSetValue:"Подеси као означену вредност",btnDelete:"Обриши"},textarea:{title:"Особине зоне текста",cols:"Број колона",rows:"Број редова"},textfield:{title:"Особине текстуалног поља",name:"Назив",value:"Вредност",charWidth:"Ширина (карактера)",maxChars:"Максимално карактера", +required:"Required",type:"Тип",typeText:"Текст",typePass:"Лозинка",typeEmail:"Е-пошта",typeSearch:"Претрага",typeTel:"Број телефона",typeUrl:"УРЛ"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sv.js new file mode 100644 index 0000000..4e48084 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/sv.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","sv",{button:{title:"Egenskaper för knapp",text:"Text (värde)",type:"Typ",typeBtn:"Knapp",typeSbm:"Skicka",typeRst:"Återställ"},checkboxAndRadio:{checkboxTitle:"Egenskaper för kryssruta",radioTitle:"Egenskaper för alternativknapp",value:"Värde",selected:"Vald",required:"Krävs"},form:{title:"Egenskaper för formulär",menu:"Egenskaper för formulär",action:"Funktion",method:"Metod",encoding:"Kodning"},hidden:{title:"Egenskaper för dolt fält",name:"Namn",value:"Värde"}, +select:{title:"Egenskaper för flervalslista",selectInfo:"Information",opAvail:"Befintliga val",value:"Värde",size:"Storlek",lines:"Linjer",chkMulti:"Tillåt flerval",required:"Krävs",opText:"Text",opValue:"Värde",btnAdd:"Lägg till",btnModify:"Redigera",btnUp:"Upp",btnDown:"Ner",btnSetValue:"Markera som valt värde",btnDelete:"Radera"},textarea:{title:"Egenskaper för textruta",cols:"Kolumner",rows:"Rader"},textfield:{title:"Egenskaper för textfält",name:"Namn",value:"Värde",charWidth:"Teckenbredd",maxChars:"Max antal tecken", +required:"Krävs",type:"Typ",typeText:"Text",typePass:"Lösenord",typeEmail:"E-post",typeSearch:"Sök",typeTel:"Telefonnummer",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/th.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/th.js new file mode 100644 index 0000000..15ed7a3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/th.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","th",{button:{title:"รายละเอียดของ ปุ่ม",text:"ข้อความ (ค่าตัวแปร)",type:"ข้อความ",typeBtn:"Button",typeSbm:"Submit",typeRst:"Reset"},checkboxAndRadio:{checkboxTitle:"คุณสมบัติของ เช็คบ๊อก",radioTitle:"คุณสมบัติของ เรดิโอบัตตอน",value:"ค่าตัวแปร",selected:"เลือกเป็นค่าเริ่มต้น",required:"Required"},form:{title:"คุณสมบัติของ แบบฟอร์ม",menu:"คุณสมบัติของ แบบฟอร์ม",action:"แอคชั่น",method:"เมธอด",encoding:"Encoding"},hidden:{title:"คุณสมบัติของ ฮิดเดนฟิลด์",name:"ชื่อ", +value:"ค่าตัวแปร"},select:{title:"คุณสมบัติของ แถบตัวเลือก",selectInfo:"อินโฟ",opAvail:"รายการตัวเลือก",value:"ค่าตัวแปร",size:"ขนาด",lines:"บรรทัด",chkMulti:"เลือกหลายค่าได้",required:"Required",opText:"ข้อความ",opValue:"ค่าตัวแปร",btnAdd:"เพิ่ม",btnModify:"แก้ไข",btnUp:"บน",btnDown:"ล่าง",btnSetValue:"เลือกเป็นค่าเริ่มต้น",btnDelete:"ลบ"},textarea:{title:"คุณสมบัติของ เท็กแอเรีย",cols:"สดมภ์",rows:"แถว"},textfield:{title:"คุณสมบัติของ เท็กซ์ฟิลด์",name:"ชื่อ",value:"ค่าตัวแปร",charWidth:"ความกว้าง", +maxChars:"จำนวนตัวอักษรสูงสุด",required:"Required",type:"ชนิด",typeText:"ข้อความ",typePass:"รหัสผ่าน",typeEmail:"อีเมล",typeSearch:"ค้นหาก",typeTel:"หมายเลขโทรศัพท์",typeUrl:"ที่อยู่อ้างอิง URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/tr.js new file mode 100644 index 0000000..074f713 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/tr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","tr",{button:{title:"Düğme Özellikleri",text:"Metin (Değer)",type:"Tip",typeBtn:"Düğme",typeSbm:"Gönder",typeRst:"Sıfırla"},checkboxAndRadio:{checkboxTitle:"Onay Kutusu Özellikleri",radioTitle:"Seçenek Düğmesi Özellikleri",value:"Değer",selected:"Seçili",required:"Zorunlu"},form:{title:"Form Özellikleri",menu:"Form Özellikleri",action:"İşlem",method:"Yöntem",encoding:"Kodlama"},hidden:{title:"Gizli Veri Özellikleri",name:"Ad",value:"Değer"},select:{title:"Seçim Menüsü Özellikleri", +selectInfo:"Bilgi",opAvail:"Mevcut Seçenekler",value:"Değer",size:"Boyut",lines:"satır",chkMulti:"Çoklu seçime izin ver",required:"Zorunlu",opText:"Metin",opValue:"Değer",btnAdd:"Ekle",btnModify:"Düzenle",btnUp:"Yukarı",btnDown:"Aşağı",btnSetValue:"Seçili değer olarak ata",btnDelete:"Sil"},textarea:{title:"Çok Satırlı Metin Özellikleri",cols:"Sütunlar",rows:"Satırlar"},textfield:{title:"Metin Girişi Özellikleri",name:"Ad",value:"Değer",charWidth:"Karakter Genişliği",maxChars:"En Fazla Karakter",required:"Zorunlu", +type:"Tür",typeText:"Metin",typePass:"Şifre",typeEmail:"E-posta",typeSearch:"Ara",typeTel:"Telefon Numarası",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/tt.js new file mode 100644 index 0000000..75275cd --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/tt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","tt",{button:{title:"Төймә үзлекләре",text:"Текст (күләм)",type:"Төр",typeBtn:"Төймә",typeSbm:"Җибәрү",typeRst:"Кире кайтару"},checkboxAndRadio:{checkboxTitle:"Checkbox Properties",radioTitle:"Радио төймə үзлекләре",value:"Күләм",selected:"Сайланган",required:"Required"},form:{title:"Форма үзлекләре",menu:"Форма үзлекләре",action:"Гамәл",method:"Ысул",encoding:"Кодировка"},hidden:{title:"Яшерен кыр үзлекләре",name:"Исем",value:"Күләм"},select:{title:"Selection Field Properties", +selectInfo:"Select Info",opAvail:"Мөмкин булган көйләүләр",value:"Күләм",size:"Зурлык",lines:"юллар",chkMulti:"Allow multiple selections",required:"Required",opText:"Текст",opValue:"Күләм",btnAdd:"Кушу",btnModify:"Үзгәртү",btnUp:"Өскә",btnDown:"Аска",btnSetValue:"Сайланган күләм булып билгеләргә",btnDelete:"Бетерү"},textarea:{title:"Текст мәйданы үзлекләре",cols:"Баганалар",rows:"Юллар"},textfield:{title:"Текст кыры үзлекләре",name:"Исем",value:"Күләм",charWidth:"Символлар киңлеге",maxChars:"Maximum Characters", +required:"Required",type:"Төр",typeText:"Текст",typePass:"Сер сүз",typeEmail:"Эл. почта",typeSearch:"Эзләү",typeTel:"Телефон номеры",typeUrl:"Сылталама"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ug.js new file mode 100644 index 0000000..d3c94da --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/ug.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","ug",{button:{title:"توپچا خاسلىقى",text:"بەلگە (قىممەت)",type:"تىپى",typeBtn:"توپچا",typeSbm:"تاپشۇر",typeRst:"ئەسلىگە قايتۇر"},checkboxAndRadio:{checkboxTitle:"كۆپ تاللاش خاسلىقى",radioTitle:"تاق تاللاش توپچا خاسلىقى",value:"تاللىغان قىممەت",selected:"تاللانغان",required:"Required"},form:{title:"جەدۋەل خاسلىقى",menu:"جەدۋەل خاسلىقى",action:"مەشغۇلات",method:"ئۇسۇل",encoding:"جەدۋەل كودلىنىشى"},hidden:{title:"يوشۇرۇن دائىرە خاسلىقى",name:"ئات",value:"دەسلەپكى قىممىتى"}, +select:{title:"جەدۋەل/تىزىم خاسلىقى",selectInfo:"ئۇچۇر تاللاڭ",opAvail:"تاللاش تۈرلىرى",value:"قىممەت",size:"ئېگىزلىكى",lines:"قۇر",chkMulti:"كۆپ تاللاشچان",required:"Required",opText:"تاللانما تېكىستى",opValue:"تاللانما قىممىتى",btnAdd:"قوش",btnModify:"ئۆزگەرت",btnUp:"ئۈستىگە",btnDown:"ئاستىغا",btnSetValue:"دەسلەپكى تاللانما قىممىتىگە تەڭشە",btnDelete:"ئۆچۈر"},textarea:{title:" كۆپ قۇرلۇق تېكىست خاسلىقى",cols:"ھەرپ كەڭلىكى",rows:"قۇر سانى"},textfield:{title:"تاق قۇرلۇق تېكىست خاسلىقى",name:"ئات", +value:"دەسلەپكى قىممىتى",charWidth:"ھەرپ كەڭلىكى",maxChars:"ئەڭ كۆپ ھەرپ سانى",required:"Required",type:"تىپى",typeText:"تېكىست",typePass:"ئىم",typeEmail:"تورخەت",typeSearch:"ئىزدە",typeTel:"تېلېفون نومۇر",typeUrl:"ئادرېس"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/uk.js new file mode 100644 index 0000000..68d3908 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/uk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","uk",{button:{title:"Властивості кнопки",text:"Значення",type:"Тип",typeBtn:"Кнопка (button)",typeSbm:"Надіслати (submit)",typeRst:"Очистити (reset)"},checkboxAndRadio:{checkboxTitle:"Властивості галочки",radioTitle:"Властивості кнопки вибору",value:"Значення",selected:"Обрана",required:"Required"},form:{title:"Властивості форми",menu:"Властивості форми",action:"Дія",method:"Метод",encoding:"Кодування"},hidden:{title:"Властивості прихованого поля",name:"Ім'я",value:"Значення"}, +select:{title:"Властивості списку",selectInfo:"Інфо",opAvail:"Доступні варіанти",value:"Значення",size:"Кількість",lines:"видимих позицій у списку",chkMulti:"Список з мультивибором",required:"Required",opText:"Текст",opValue:"Значення",btnAdd:"Добавити",btnModify:"Змінити",btnUp:"Вгору",btnDown:"Вниз",btnSetValue:"Встановити як обране значення",btnDelete:"Видалити"},textarea:{title:"Властивості текстової області",cols:"Стовбці",rows:"Рядки"},textfield:{title:"Властивості текстового поля",name:"Ім'я", +value:"Значення",charWidth:"Ширина",maxChars:"Макс. к-ть символів",required:"Required",type:"Тип",typeText:"Текст",typePass:"Пароль",typeEmail:"Пошта",typeSearch:"Пошук",typeTel:"Мобільний",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/vi.js new file mode 100644 index 0000000..eda4e47 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/vi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("forms","vi",{button:{title:"Thuộc tính của nút",text:"Chuỗi hiển thị (giá trị)",type:"Kiểu",typeBtn:"Nút bấm",typeSbm:"Nút gửi",typeRst:"Nút nhập lại"},checkboxAndRadio:{checkboxTitle:"Thuộc tính nút kiểm",radioTitle:"Thuộc tính nút chọn",value:"Giá trị",selected:"Được chọn",required:"Required"},form:{title:"Thuộc tính biểu mẫu",menu:"Thuộc tính biểu mẫu",action:"Hành động",method:"Phương thức",encoding:"Bảng mã"},hidden:{title:"Thuộc tính trường ẩn",name:"Tên",value:"Giá trị"}, +select:{title:"Thuộc tính ô chọn",selectInfo:"Thông tin",opAvail:"Các tùy chọn có thể sử dụng",value:"Giá trị",size:"Kích cỡ",lines:"dòng",chkMulti:"Cho phép chọn nhiều",required:"Required",opText:"Văn bản",opValue:"Giá trị",btnAdd:"Thêm",btnModify:"Thay đổi",btnUp:"Lên",btnDown:"Xuống",btnSetValue:"Giá trị được chọn",btnDelete:"Nút xoá"},textarea:{title:"Thuộc tính vùng văn bản",cols:"Số cột",rows:"Số hàng"},textfield:{title:"Thuộc tính trường văn bản",name:"Tên",value:"Giá trị",charWidth:"Độ rộng của ký tự", +maxChars:"Số ký tự tối đa",required:"Required",type:"Kiểu",typeText:"Ký tự",typePass:"Mật khẩu",typeEmail:"Email",typeSearch:"Tìm kiếm",typeTel:"Số điện thoại",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/zh-cn.js new file mode 100644 index 0000000..018b5f8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/zh-cn.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("forms","zh-cn",{button:{title:"按钮属性",text:"标签(值)",type:"类型",typeBtn:"按钮",typeSbm:"提交",typeRst:"重设"},checkboxAndRadio:{checkboxTitle:"复选框属性",radioTitle:"单选按钮属性",value:"选定值",selected:"已勾选",required:"必选"},form:{title:"表单属性",menu:"表单属性",action:"动作",method:"方法",encoding:"表单编码"},hidden:{title:"隐藏域属性",name:"名称",value:"初始值"},select:{title:"菜单/列表属性",selectInfo:"选择信息",opAvail:"可选项",value:"值",size:"高度",lines:"行",chkMulti:"允许多选",required:"必选",opText:"选项文本",opValue:"选项值",btnAdd:"添加", +btnModify:"修改",btnUp:"上移",btnDown:"下移",btnSetValue:"设为初始选定",btnDelete:"删除"},textarea:{title:"多行文本属性",cols:"字符宽度",rows:"行数"},textfield:{title:"单行文本属性",name:"名称",value:"初始值",charWidth:"字符宽度",maxChars:"最多字符数",required:"必填",type:"类型",typeText:"文本",typePass:"密码",typeEmail:"Email",typeSearch:"搜索",typeTel:"电话号码",typeUrl:"地址"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/zh.js new file mode 100644 index 0000000..2e6f8d5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/lang/zh.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("forms","zh",{button:{title:"按鈕內容",text:"顯示文字 (值)",type:"類型",typeBtn:"按鈕",typeSbm:"送出",typeRst:"重設"},checkboxAndRadio:{checkboxTitle:"核取方塊內容",radioTitle:"選項按鈕內容",value:"數值",selected:"已選",required:"必填"},form:{title:"表單內容",menu:"表單內容",action:"動作",method:"方式",encoding:"編碼"},hidden:{title:"隱藏欄位內容",name:"名稱",value:"數值"},select:{title:"選取欄位內容",selectInfo:"選擇資訊",opAvail:"可用選項",value:"數值",size:"大小",lines:"行數",chkMulti:"允許多選",required:"必填",opText:"文字",opValue:"數值",btnAdd:"新增",btnModify:"修改", +btnUp:"向上",btnDown:"向下",btnSetValue:"設為已選",btnDelete:"刪除"},textarea:{title:"文字區域內容",cols:"列",rows:"行"},textfield:{title:"文字欄位內容",name:"名字",value:"數值",charWidth:"字元寬度",maxChars:"最大字元數",required:"必填",type:"類型",typeText:"文字",typePass:"密碼",typeEmail:"電子郵件",typeSearch:"搜尋",typeTel:"電話號碼",typeUrl:"URL"}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/forms/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/forms/plugin.js new file mode 100644 index 0000000..0fc0aac --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/forms/plugin.js @@ -0,0 +1,14 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("forms",{requires:"dialog,fakeobjects",lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",icons:"button,checkbox,form,hiddenfield,imagebutton,radio,select,select-rtl,textarea,textarea-rtl,textfield",hidpi:!0,onLoad:function(){CKEDITOR.addCss(".cke_editable form{border: 1px dotted #FF0000;padding: 2px;}\n"); +CKEDITOR.addCss("img.cke_hidden{background-image: url("+CKEDITOR.getUrl(this.path+"images/hiddenfield.gif")+");background-position: center center;background-repeat: no-repeat;border: 1px solid #a9a9a9;width: 16px !important;height: 16px !important;}")},init:function(a){var b=a.lang,g=0,h={email:1,password:1,search:1,tel:1,text:1,url:1},j={checkbox:"input[type,name,checked,required]",radio:"input[type,name,checked,required]",textfield:"input[type,name,value,size,maxlength,required]",textarea:"textarea[cols,rows,name,required]", +select:"select[name,size,multiple,required]; option[value,selected]",button:"input[type,name,value]",form:"form[action,name,id,enctype,target,method]",hiddenfield:"input[type,name,value]",imagebutton:"input[type,alt,src]{width,height,border,border-width,border-style,margin,float}"},k={checkbox:"input",radio:"input",textfield:"input",textarea:"textarea",select:"select",button:"input",form:"form",hiddenfield:"input",imagebutton:"input"},e=function(d,c,e){var h={allowedContent:j[c],requiredContent:k[c]}; +"form"==c&&(h.context="form");a.addCommand(c,new CKEDITOR.dialogCommand(c,h));a.ui.addButton&&a.ui.addButton(d,{label:b.common[d.charAt(0).toLowerCase()+d.slice(1)],command:c,toolbar:"forms,"+(g+=10)});CKEDITOR.dialog.add(c,e)},f=this.path+"dialogs/";!a.blockless&&e("Form","form",f+"form.js");e("Checkbox","checkbox",f+"checkbox.js");e("Radio","radio",f+"radio.js");e("TextField","textfield",f+"textfield.js");e("Textarea","textarea",f+"textarea.js");e("Select","select",f+"select.js");e("Button","button", +f+"button.js");var i=a.plugins.image;i&&!a.plugins.image2&&e("ImageButton","imagebutton",CKEDITOR.plugins.getPath("image")+"dialogs/image.js");e("HiddenField","hiddenfield",f+"hiddenfield.js");a.addMenuItems&&(e={checkbox:{label:b.forms.checkboxAndRadio.checkboxTitle,command:"checkbox",group:"checkbox"},radio:{label:b.forms.checkboxAndRadio.radioTitle,command:"radio",group:"radio"},textfield:{label:b.forms.textfield.title,command:"textfield",group:"textfield"},hiddenfield:{label:b.forms.hidden.title, +command:"hiddenfield",group:"hiddenfield"},button:{label:b.forms.button.title,command:"button",group:"button"},select:{label:b.forms.select.title,command:"select",group:"select"},textarea:{label:b.forms.textarea.title,command:"textarea",group:"textarea"}},i&&(e.imagebutton={label:b.image.titleButton,command:"imagebutton",group:"imagebutton"}),!a.blockless&&(e.form={label:b.forms.form.menu,command:"form",group:"form"}),a.addMenuItems(e));a.contextMenu&&(!a.blockless&&a.contextMenu.addListener(function(d, +c,a){if((d=a.contains("form",1))&&!d.isReadOnly())return{form:CKEDITOR.TRISTATE_OFF}}),a.contextMenu.addListener(function(d){if(d&&!d.isReadOnly()){var c=d.getName();if(c=="select")return{select:CKEDITOR.TRISTATE_OFF};if(c=="textarea")return{textarea:CKEDITOR.TRISTATE_OFF};if(c=="input"){var a=d.getAttribute("type")||"text";switch(a){case "button":case "submit":case "reset":return{button:CKEDITOR.TRISTATE_OFF};case "checkbox":return{checkbox:CKEDITOR.TRISTATE_OFF};case "radio":return{radio:CKEDITOR.TRISTATE_OFF}; +case "image":return i?{imagebutton:CKEDITOR.TRISTATE_OFF}:null}if(h[a])return{textfield:CKEDITOR.TRISTATE_OFF}}if(c=="img"&&d.data("cke-real-element-type")=="hiddenfield")return{hiddenfield:CKEDITOR.TRISTATE_OFF}}}));a.on("doubleclick",function(d){var c=d.data.element;if(!a.blockless&&c.is("form"))d.data.dialog="form";else if(c.is("select"))d.data.dialog="select";else if(c.is("textarea"))d.data.dialog="textarea";else if(c.is("img")&&c.data("cke-real-element-type")=="hiddenfield")d.data.dialog="hiddenfield"; +else if(c.is("input")){c=c.getAttribute("type")||"text";switch(c){case "button":case "submit":case "reset":d.data.dialog="button";break;case "checkbox":d.data.dialog="checkbox";break;case "radio":d.data.dialog="radio";break;case "image":d.data.dialog="imagebutton"}if(h[c])d.data.dialog="textfield"}})},afterInit:function(a){var b=a.dataProcessor,g=b&&b.htmlFilter,b=b&&b.dataFilter;CKEDITOR.env.ie&&g&&g.addRules({elements:{input:function(a){var a=a.attributes,b=a.type;b||(a.type="text");("checkbox"== +b||"radio"==b)&&"on"==a.value&&delete a.value}}},{applyToAll:!0});b&&b.addRules({elements:{input:function(b){if("hidden"==b.attributes.type)return a.createFakeParserElement(b,"cke_hidden","hiddenfield")}}},{applyToAll:!0})}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/icons.png b/zup-painel/assets/scripts/ckeditor/plugins/icons.png new file mode 100644 index 0000000..68f6eeb Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/icons.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/icons_hidpi.png b/zup-painel/assets/scripts/ckeditor/plugins/icons_hidpi.png new file mode 100644 index 0000000..88407cd Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/icons_hidpi.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/dialogs/iframe.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/dialogs/iframe.js new file mode 100644 index 0000000..db7ecbb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/dialogs/iframe.js @@ -0,0 +1,10 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function c(b){var c=this instanceof CKEDITOR.ui.dialog.checkbox;b.hasAttribute(this.id)&&(b=b.getAttribute(this.id),c?this.setValue(e[this.id]["true"]==b.toLowerCase()):this.setValue(b))}function d(b){var c=""===this.getValue(),a=this instanceof CKEDITOR.ui.dialog.checkbox,d=this.getValue();c?b.removeAttribute(this.att||this.id):a?b.setAttribute(this.id,e[this.id][d]):b.setAttribute(this.att||this.id,d)}var e={scrolling:{"true":"yes","false":"no"},frameborder:{"true":"1","false":"0"}}; +CKEDITOR.dialog.add("iframe",function(b){var f=b.lang.iframe,a=b.lang.common,e=b.plugins.dialogadvtab;return{title:f.title,minWidth:350,minHeight:260,onShow:function(){this.fakeImage=this.iframeNode=null;var a=this.getSelectedElement();a&&(a.data("cke-real-element-type")&&"iframe"==a.data("cke-real-element-type"))&&(this.fakeImage=a,this.iframeNode=a=b.restoreRealElement(a),this.setupContent(a))},onOk:function(){var a;a=this.fakeImage?this.iframeNode:new CKEDITOR.dom.element("iframe");var c={},d= +{};this.commitContent(a,c,d);a=b.createFakeElement(a,"cke_iframe","iframe",!0);a.setAttributes(d);a.setStyles(c);this.fakeImage?(a.replace(this.fakeImage),b.getSelection().selectElement(a)):b.insertElement(a)},contents:[{id:"info",label:a.generalTab,accessKey:"I",elements:[{type:"vbox",padding:0,children:[{id:"src",type:"text",label:a.url,required:!0,validate:CKEDITOR.dialog.validate.notEmpty(f.noUrl),setup:c,commit:d}]},{type:"hbox",children:[{id:"width",type:"text",requiredContent:"iframe[width]", +style:"width:100%",labelLayout:"vertical",label:a.width,validate:CKEDITOR.dialog.validate.htmlLength(a.invalidHtmlLength.replace("%1",a.width)),setup:c,commit:d},{id:"height",type:"text",requiredContent:"iframe[height]",style:"width:100%",labelLayout:"vertical",label:a.height,validate:CKEDITOR.dialog.validate.htmlLength(a.invalidHtmlLength.replace("%1",a.height)),setup:c,commit:d},{id:"align",type:"select",requiredContent:"iframe[align]","default":"",items:[[a.notSet,""],[a.alignLeft,"left"],[a.alignRight, +"right"],[a.alignTop,"top"],[a.alignMiddle,"middle"],[a.alignBottom,"bottom"]],style:"width:100%",labelLayout:"vertical",label:a.align,setup:function(a,b){c.apply(this,arguments);if(b){var d=b.getAttribute("align");this.setValue(d&&d.toLowerCase()||"")}},commit:function(a,b,c){d.apply(this,arguments);this.getValue()&&(c.align=this.getValue())}}]},{type:"hbox",widths:["50%","50%"],children:[{id:"scrolling",type:"checkbox",requiredContent:"iframe[scrolling]",label:f.scrolling,setup:c,commit:d},{id:"frameborder", +type:"checkbox",requiredContent:"iframe[frameborder]",label:f.border,setup:c,commit:d}]},{type:"hbox",widths:["50%","50%"],children:[{id:"name",type:"text",requiredContent:"iframe[name]",label:a.name,setup:c,commit:d},{id:"title",type:"text",requiredContent:"iframe[title]",label:a.advisoryTitle,setup:c,commit:d}]},{id:"longdesc",type:"text",requiredContent:"iframe[longdesc]",label:a.longDescr,setup:c,commit:d}]},e&&e.createAdvancedTab(b,{id:1,classes:1,styles:1},"iframe")]}})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/icons/hidpi/iframe.png b/zup-painel/assets/scripts/ckeditor/plugins/iframe/icons/hidpi/iframe.png new file mode 100644 index 0000000..ff17604 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/iframe/icons/hidpi/iframe.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/icons/iframe.png b/zup-painel/assets/scripts/ckeditor/plugins/iframe/icons/iframe.png new file mode 100644 index 0000000..f72d191 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/iframe/icons/iframe.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/images/placeholder.png b/zup-painel/assets/scripts/ckeditor/plugins/iframe/images/placeholder.png new file mode 100644 index 0000000..4af0956 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/iframe/images/placeholder.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/af.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/af.js new file mode 100644 index 0000000..71eb910 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/af.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","af",{border:"Wys rand van raam",noUrl:"Gee die iframe URL",scrolling:"Skuifbalke aan",title:"IFrame Eienskappe",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ar.js new file mode 100644 index 0000000..8b90f6c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ar.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ar",{border:"إظهار حدود الإطار",noUrl:"فضلا أكتب رابط الـ iframe",scrolling:"تفعيل أشرطة الإنتقال",title:"خصائص iframe",toolbar:"iframe"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/bg.js new file mode 100644 index 0000000..23b9a7b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/bg.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","bg",{border:"Показва рамка на карето",noUrl:"Моля въведете URL за iFrame",scrolling:"Вкл. скролбаровете",title:"IFrame настройки",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/bn.js new file mode 100644 index 0000000..a7a9ee0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/bn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","bn",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/bs.js new file mode 100644 index 0000000..f37043c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/bs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","bs",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ca.js new file mode 100644 index 0000000..18bddf5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ca",{border:"Mostra la vora del marc",noUrl:"Si us plau, introdueixi la URL de l'iframe",scrolling:"Activa les barres de desplaçament",title:"Propietats de l'IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/cs.js new file mode 100644 index 0000000..37b25fb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","cs",{border:"Zobrazit okraj",noUrl:"Zadejte prosím URL obsahu pro IFrame",scrolling:"Zapnout posuvníky",title:"Vlastnosti IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/cy.js new file mode 100644 index 0000000..f8db604 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/cy.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","cy",{border:"Dangos ymyl y ffrâm",noUrl:"Rhowch URL yr iframe",scrolling:"Galluogi bariau sgrolio",title:"Priodweddau IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/da.js new file mode 100644 index 0000000..5411533 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/da.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","da",{border:"Vis kant på rammen",noUrl:"Venligst indsæt URL på iframen",scrolling:"Aktiver scrollbars",title:"Iframe egenskaber",toolbar:"Iframe"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/de.js new file mode 100644 index 0000000..2556d57 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","de",{border:"Rahmen anzeigen",noUrl:"Bitte geben Sie die IFrame-URL an",scrolling:"Rollbalken anzeigen",title:"IFrame-Eigenschaften",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/el.js new file mode 100644 index 0000000..cecba9b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/el.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","el",{border:"Προβολή περιγράμματος πλαισίου",noUrl:"Παρακαλούμε εισάγεται το URL του iframe",scrolling:"Ενεργοποίηση μπαρών κύλισης",title:"Ιδιότητες IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en-au.js new file mode 100644 index 0000000..8e2821f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en-au.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","en-au",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en-ca.js new file mode 100644 index 0000000..c25669e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","en-ca",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en-gb.js new file mode 100644 index 0000000..214388d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en-gb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","en-gb",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en.js new file mode 100644 index 0000000..8d1407e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","en",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/eo.js new file mode 100644 index 0000000..a185507 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/eo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","eo",{border:"Montri borderon de kadro (frame)",noUrl:"Bonvolu entajpi la retadreson de la ligilo al la enlinia kadro (IFrame)",scrolling:"Ebligi rulumskalon",title:"Atributoj de la enlinia kadro (IFrame)",toolbar:"Enlinia kadro (IFrame)"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/es.js new file mode 100644 index 0000000..89e3851 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/es.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","es",{border:"Mostrar borde del marco",noUrl:"Por favor, escriba la dirección del iframe",scrolling:"Activar barras de desplazamiento",title:"Propiedades de iframe",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/et.js new file mode 100644 index 0000000..7cd5ec0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/et.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","et",{border:"Raami äärise näitamine",noUrl:"Vali iframe URLi liik",scrolling:"Kerimisribade lubamine",title:"IFrame omadused",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/eu.js new file mode 100644 index 0000000..f8b1cff --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/eu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","eu",{border:"Markoaren ertza ikusi",noUrl:"iframe-aren URLa idatzi, mesedez.",scrolling:"Korritze barrak gaitu",title:"IFrame-aren Propietateak",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fa.js new file mode 100644 index 0000000..a6bd7ee --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fa.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","fa",{border:"نمایش خطوط frame",noUrl:"لطفا مسیر URL iframe را درج کنید",scrolling:"نمایش خطکشها",title:"ویژگیهای IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fi.js new file mode 100644 index 0000000..2813efb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","fi",{border:"Näytä kehyksen reunat",noUrl:"Anna IFrame-kehykselle lähdeosoite (src)",scrolling:"Näytä vierityspalkit",title:"IFrame-kehyksen ominaisuudet",toolbar:"IFrame-kehys"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fo.js new file mode 100644 index 0000000..3ec97a0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","fo",{border:"Vís frame kant",noUrl:"Vinarliga skriva URL til iframe",scrolling:"Loyv scrollbars",title:"Møguleikar fyri IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fr-ca.js new file mode 100644 index 0000000..1a43ea6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fr-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","fr-ca",{border:"Afficher la bordure du cadre",noUrl:"Veuillez entre l'URL du IFrame",scrolling:"Activer les barres de défilement",title:"Propriétés du IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fr.js new file mode 100644 index 0000000..c5bc58c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","fr",{border:"Afficher une bordure de la IFrame",noUrl:"Veuillez entrer l'adresse du lien de la IFrame",scrolling:"Permettre à la barre de défilement",title:"Propriétés de la IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/gl.js new file mode 100644 index 0000000..5326e33 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","gl",{border:"Amosar o bordo do marco",noUrl:"Escriba o enderezo do iframe",scrolling:"Activar as barras de desprazamento",title:"Propiedades do iFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/gu.js new file mode 100644 index 0000000..0c6aed9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/gu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","gu",{border:"ફ્રેમ બોર્ડેર બતાવવી",noUrl:"iframe URL ટાઈપ્ કરો",scrolling:"સ્ક્રોલબાર ચાલુ કરવા",title:"IFrame વિકલ્પો",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/he.js new file mode 100644 index 0000000..4c22777 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/he.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","he",{border:"הראה מסגרת לחלון",noUrl:"יש להכניס כתובת לחלון.",scrolling:"אפשר פסי גלילה",title:"מאפייני חלון פנימי (iframe)",toolbar:"חלון פנימי (iframe)"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/hi.js new file mode 100644 index 0000000..8699b82 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/hi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","hi",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/hr.js new file mode 100644 index 0000000..6cf8b83 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/hr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","hr",{border:"Prikaži okvir IFrame-a",noUrl:"Unesite URL iframe-a",scrolling:"Omogući trake za skrolanje",title:"IFrame svojstva",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/hu.js new file mode 100644 index 0000000..94bdf85 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/hu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","hu",{border:"Legyen keret",noUrl:"Kérem írja be a iframe URL-t",scrolling:"Gördítősáv bekapcsolása",title:"IFrame Tulajdonságok",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/id.js new file mode 100644 index 0000000..0db9a8e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/id.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","id",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/is.js new file mode 100644 index 0000000..bb669e8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/is.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","is",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/it.js new file mode 100644 index 0000000..54f33be --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","it",{border:"Mostra il bordo",noUrl:"Inserire l'URL del campo IFrame",scrolling:"Abilita scrollbar",title:"Proprietà IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ja.js new file mode 100644 index 0000000..039c578 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ja.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ja",{border:"フレームの枠を表示",noUrl:"iframeのURLを入力してください。",scrolling:"スクロールバーの表示を許可",title:"iFrameのプロパティ",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ka.js new file mode 100644 index 0000000..e838899 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ka.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ka",{border:"ჩარჩოს გამოჩენა",noUrl:"აკრიფეთ iframe-ის URL",scrolling:"გადახვევის ზოლების დაშვება",title:"IFrame-ის პარამეტრები",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/km.js new file mode 100644 index 0000000..629c783 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/km.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","km",{border:"បង្ហាញ​បន្ទាត់​ស៊ុម",noUrl:"សូម​បញ្ចូល URL របស់ iframe",scrolling:"ប្រើ​របារ​រំកិល",title:"លក្ខណៈ​សម្បត្តិ IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ko.js new file mode 100644 index 0000000..99441b1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ko",{border:"프레임 테두리 표시",noUrl:"아이프레임 주소(URL)를 입력해주세요.",scrolling:"스크롤바 사용",title:"아이프레임 속성",toolbar:"아이프레임"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ku.js new file mode 100644 index 0000000..bc1ae36 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ku.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ku",{border:"نیشاندانی لاکێشه بە چوواردەوری چووارچێوە",noUrl:"تکایه ناونیشانی بەستەر بنووسه بۆ چووارچێوه",scrolling:"چالاککردنی هاتووچۆپێکردن",title:"دیالۆگی چووارچێوه",toolbar:"چووارچێوه"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/lt.js new file mode 100644 index 0000000..20dee01 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/lt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","lt",{border:"Rodyti rėmelį",noUrl:"Nurodykite iframe nuorodą",scrolling:"Įjungti slankiklius",title:"IFrame nustatymai",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/lv.js new file mode 100644 index 0000000..b9db943 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/lv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","lv",{border:"Rādīt rāmi",noUrl:"Norādiet iframe adresi",scrolling:"Atļaut ritjoslas",title:"IFrame uzstādījumi",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/mk.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/mk.js new file mode 100644 index 0000000..a4dbb23 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/mk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","mk",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/mn.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/mn.js new file mode 100644 index 0000000..f45cf05 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/mn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","mn",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ms.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ms.js new file mode 100644 index 0000000..8ff5bc1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ms.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ms",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/nb.js new file mode 100644 index 0000000..ec65e33 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","nb",{border:"Viss ramme rundt iframe",noUrl:"Vennligst skriv inn URL for iframe",scrolling:"Aktiver scrollefelt",title:"Egenskaper for IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/nl.js new file mode 100644 index 0000000..348ee0e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","nl",{border:"Framerand tonen",noUrl:"Vul de IFrame URL in",scrolling:"Scrollbalken inschakelen",title:"IFrame-eigenschappen",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/no.js new file mode 100644 index 0000000..04a9241 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/no.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","no",{border:"Viss ramme rundt iframe",noUrl:"Vennligst skriv inn URL for iframe",scrolling:"Aktiver scrollefelt",title:"Egenskaper for IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/pl.js new file mode 100644 index 0000000..d085999 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","pl",{border:"Pokaż obramowanie obiektu IFrame",noUrl:"Podaj adres URL elementu IFrame",scrolling:"Włącz paski przewijania",title:"Właściwości elementu IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/pt-br.js new file mode 100644 index 0000000..6710026 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/pt-br.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","pt-br",{border:"Mostra borda do iframe",noUrl:"Insira a URL do iframe",scrolling:"Abilita scrollbars",title:"Propriedade do IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/pt.js new file mode 100644 index 0000000..b8c8a01 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/pt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","pt",{border:"Mostrar a borda da Frame",noUrl:"Por favor, digite o URL da iframe",scrolling:"Ativar barras de rolamento",title:"Propriedades da IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ro.js new file mode 100644 index 0000000..d2ca21f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ro.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ro",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ru.js new file mode 100644 index 0000000..8691613 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ru",{border:"Показать границы фрейма",noUrl:"Пожалуйста, введите ссылку фрейма",scrolling:"Отображать полосы прокрутки",title:"Свойства iFrame",toolbar:"iFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/si.js new file mode 100644 index 0000000..a0b2c1e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/si.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","si",{border:"සැකිල්ලේ කඩයිම් ",noUrl:"කරුණාකර රුපයේ URL ලියන්න",scrolling:"සක්ක්‍රිය කරන්න",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sk.js new file mode 100644 index 0000000..7685e8b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","sk",{border:"Zobraziť rám frame-u",noUrl:"Prosím, vložte URL iframe",scrolling:"Povoliť skrolovanie",title:"Vlastnosti IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sl.js new file mode 100644 index 0000000..7b79a79 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","sl",{border:"Pokaži mejo okvira",noUrl:"Prosimo, vnesite iframe URL",scrolling:"Omogoči scrollbars",title:"IFrame Lastnosti",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sq.js new file mode 100644 index 0000000..4c66e35 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sq.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","sq",{border:"Shfaq kufirin e kornizës",noUrl:"Ju lutemi shkruani URL-në e iframe-it",scrolling:"Lejo shiritët zvarritës",title:"Karakteristikat e IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sr-latn.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sr-latn.js new file mode 100644 index 0000000..3d27945 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sr-latn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","sr-latn",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sr.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sr.js new file mode 100644 index 0000000..e7d1c53 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","sr",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sv.js new file mode 100644 index 0000000..c8adee2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/sv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","sv",{border:"Visa ramkant",noUrl:"Skriv in URL för iFrame",scrolling:"Aktivera rullningslister",title:"iFrame Egenskaper",toolbar:"iFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/th.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/th.js new file mode 100644 index 0000000..6d876ed --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/th.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","th",{border:"Show frame border",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame Properties",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/tr.js new file mode 100644 index 0000000..9096f66 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","tr",{border:"Çerceve sınırlarını göster",noUrl:"Lütfen IFrame köprü (URL) bağlantısını yazın",scrolling:"Kaydırma çubuklarını aktif et",title:"IFrame Özellikleri",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/tt.js new file mode 100644 index 0000000..586d3ae --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/tt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","tt",{border:"Frame чикләрен күрсәтү",noUrl:"Please type the iframe URL",scrolling:"Enable scrollbars",title:"IFrame үзлекләре",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ug.js new file mode 100644 index 0000000..156b972 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/ug.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","ug",{border:"كاندۇك گىرۋەكلىرىنى كۆرسەت",noUrl:"كاندۇكنىڭ ئادرېسى(Url)نى كىرگۈزۈڭ",scrolling:"دومىلىما سۈرگۈچكە يول قوي",title:"IFrame خاسلىق",toolbar:"IFrame "}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/uk.js new file mode 100644 index 0000000..fe6660c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/uk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","uk",{border:"Показати рамки фрейму",noUrl:"Будь ласка введіть посилання для IFrame",scrolling:"Увімкнути прокрутку",title:"Налаштування для IFrame",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/vi.js new file mode 100644 index 0000000..7034022 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/vi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","vi",{border:"Hiển thị viền khung",noUrl:"Vui lòng nhập địa chỉ iframe",scrolling:"Kích hoạt thanh cuộn",title:"Thuộc tính iframe",toolbar:"Iframe"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/zh-cn.js new file mode 100644 index 0000000..876c196 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","zh-cn",{border:"显示框架边框",noUrl:"请输入框架的 URL",scrolling:"允许滚动条",title:"IFrame 属性",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/zh.js new file mode 100644 index 0000000..5fdd10f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("iframe","zh",{border:"顯示框架框線",noUrl:"請輸入 iframe URL",scrolling:"啟用捲軸列",title:"IFrame 屬性",toolbar:"IFrame"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframe/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/iframe/plugin.js new file mode 100644 index 0000000..4b4a01f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframe/plugin.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("iframe",{requires:"dialog,fakeobjects",lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",icons:"iframe",hidpi:!0,onLoad:function(){CKEDITOR.addCss("img.cke_iframe{background-image: url("+CKEDITOR.getUrl(this.path+"images/placeholder.png")+");background-position: center center;background-repeat: no-repeat;border: 1px solid #a9a9a9;width: 80px;height: 80px;}")}, +init:function(a){var b=a.lang.iframe,c="iframe[align,longdesc,frameborder,height,name,scrolling,src,title,width]";a.plugins.dialogadvtab&&(c+=";iframe"+a.plugins.dialogadvtab.allowedContent({id:1,classes:1,styles:1}));CKEDITOR.dialog.add("iframe",this.path+"dialogs/iframe.js");a.addCommand("iframe",new CKEDITOR.dialogCommand("iframe",{allowedContent:c,requiredContent:"iframe"}));a.ui.addButton&&a.ui.addButton("Iframe",{label:b.toolbar,command:"iframe",toolbar:"insert,80"});a.on("doubleclick",function(a){var b= +a.data.element;b.is("img")&&"iframe"==b.data("cke-real-element-type")&&(a.data.dialog="iframe")});a.addMenuItems&&a.addMenuItems({iframe:{label:b.title,command:"iframe",group:"image"}});a.contextMenu&&a.contextMenu.addListener(function(a){if(a&&a.is("img")&&"iframe"==a.data("cke-real-element-type"))return{iframe:CKEDITOR.TRISTATE_OFF}})},afterInit:function(a){var b=a.dataProcessor;(b=b&&b.dataFilter)&&b.addRules({elements:{iframe:function(b){return a.createFakeParserElement(b,"cke_iframe","iframe", +!0)}}})}})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/iframedialog/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/iframedialog/plugin.js new file mode 100644 index 0000000..f7a0afc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/iframedialog/plugin.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("iframedialog",{requires:"dialog",onLoad:function(){CKEDITOR.dialog.addIframe=function(e,d,a,j,f,l,g){a={type:"iframe",src:a,width:"100%",height:"100%"};a.onContentLoad="function"==typeof l?l:function(){var a=this.getElement().$.contentWindow;if(a.onDialogEvent){var b=this.getDialog(),c=function(b){return a.onDialogEvent(b)};b.on("ok",c);b.on("cancel",c);b.on("resize",c);b.on("hide",function(a){b.removeListener("ok",c);b.removeListener("cancel",c);b.removeListener("resize",c); +a.removeListener()});a.onDialogEvent({name:"load",sender:this,editor:b._.editor})}};var h={title:d,minWidth:j,minHeight:f,contents:[{id:"iframe",label:d,expand:!0,elements:[a],style:"width:"+a.width+";height:"+a.height}]},i;for(i in g)h[i]=g[i];this.add(e,function(){return h})};(function(){var e=function(d,a,j){if(!(3>arguments.length)){var f=this._||(this._={}),e=a.onContentLoad&&CKEDITOR.tools.bind(a.onContentLoad,this),g=CKEDITOR.tools.cssLength(a.width),h=CKEDITOR.tools.cssLength(a.height);f.frameId= +CKEDITOR.tools.getNextId()+"_iframe";d.on("load",function(){CKEDITOR.document.getById(f.frameId).getParent().setStyles({width:g,height:h})});var i={src:"%2",id:f.frameId,frameborder:0,allowtransparency:!0},k=[];"function"==typeof a.onContentLoad&&(i.onload="CKEDITOR.tools.callFunction(%1);");CKEDITOR.ui.dialog.uiElement.call(this,d,a,k,"iframe",{width:g,height:h},i,"");j.push('<div style="width:'+g+";height:"+h+';" id="'+this.domId+'"></div>');k=k.join("");d.on("show",function(){var b=CKEDITOR.document.getById(f.frameId).getParent(), +c=CKEDITOR.tools.addFunction(e),c=k.replace("%1",c).replace("%2",CKEDITOR.tools.htmlEncode(a.src));b.setHtml(c)})}};e.prototype=new CKEDITOR.ui.dialog.uiElement;CKEDITOR.dialog.addUIElement("iframe",{build:function(d,a,j){return new e(d,a,j)}})})()}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image/dialogs/image.js b/zup-painel/assets/scripts/ckeditor/plugins/image/dialogs/image.js new file mode 100644 index 0000000..425748b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image/dialogs/image.js @@ -0,0 +1,43 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){var r=function(d,j){function r(){var a=arguments,b=this.getContentElement("advanced","txtdlgGenStyle");b&&b.commit.apply(b,a);this.foreach(function(b){b.commit&&"txtdlgGenStyle"!=b.id&&b.commit.apply(b,a)})}function i(a){if(!s){s=1;var b=this.getDialog(),c=b.imageElement;if(c){this.commit(e,c);for(var a=[].concat(a),d=a.length,v,g=0;g<d;g++)(v=b.getContentElement.apply(b,a[g].split(":")))&&v.setup(e,c)}s=0}}var e=1,k=/^\s*(\d+)((px)|\%)?\s*$/i,w=/(^\s*(\d+)((px)|\%)?\s*$)|^$/i,o=/^\d+px$/, +x=function(){var a=this.getValue(),b=this.getDialog(),c=a.match(k);c&&("%"==c[2]&&l(b,!1),a=c[1]);b.lockRatio&&(c=b.originalElement,"true"==c.getCustomData("isReady")&&("txtHeight"==this.id?(a&&"0"!=a&&(a=Math.round(c.$.width*(a/c.$.height))),isNaN(a)||b.setValueOf("info","txtWidth",a)):(a&&"0"!=a&&(a=Math.round(c.$.height*(a/c.$.width))),isNaN(a)||b.setValueOf("info","txtHeight",a))));f(b)},f=function(a){if(!a.originalElement||!a.preview)return 1;a.commitContent(4,a.preview);return 0},s,l=function(a, +b){if(!a.getContentElement("info","ratioLock"))return null;var c=a.originalElement;if(!c)return null;if("check"==b){if(!a.userlockRatio&&"true"==c.getCustomData("isReady")){var d=a.getValueOf("info","txtWidth"),e=a.getValueOf("info","txtHeight"),c=1E3*c.$.width/c.$.height,g=1E3*d/e;a.lockRatio=!1;!d&&!e?a.lockRatio=!0:!isNaN(c)&&!isNaN(g)&&Math.round(c)==Math.round(g)&&(a.lockRatio=!0)}}else void 0!==b?a.lockRatio=b:(a.userlockRatio=1,a.lockRatio=!a.lockRatio);d=CKEDITOR.document.getById(p);a.lockRatio? +d.removeClass("cke_btn_unlocked"):d.addClass("cke_btn_unlocked");d.setAttribute("aria-checked",a.lockRatio);CKEDITOR.env.hc&&d.getChild(0).setHtml(a.lockRatio?CKEDITOR.env.ie?"■":"▣":CKEDITOR.env.ie?"□":"▢");return a.lockRatio},y=function(a,b){var c=a.originalElement;if("true"==c.getCustomData("isReady")){var d=a.getContentElement("info","txtWidth"),e=a.getContentElement("info","txtHeight"),g;b?c=g=0:(g=c.$.width,c=c.$.height);d&&d.setValue(g);e&&e.setValue(c)}f(a)},z=function(a,b){function c(a,b){var c= +a.match(k);return c?("%"==c[2]&&(c[1]+="%",l(d,!1)),c[1]):b}if(a==e){var d=this.getDialog(),f="",g="txtWidth"==this.id?"width":"height",h=b.getAttribute(g);h&&(f=c(h,f));f=c(b.getStyle(g),f);this.setValue(f)}},t,q=function(){var a=this.originalElement,b=CKEDITOR.document.getById(m);a.setCustomData("isReady","true");a.removeListener("load",q);a.removeListener("error",h);a.removeListener("abort",h);b&&b.setStyle("display","none");this.dontResetSize||y(this,!1===d.config.image_prefillDimensions);this.firstLoad&& +CKEDITOR.tools.setTimeout(function(){l(this,"check")},0,this);this.dontResetSize=this.firstLoad=!1;f(this)},h=function(){var a=this.originalElement,b=CKEDITOR.document.getById(m);a.removeListener("load",q);a.removeListener("error",h);a.removeListener("abort",h);a=CKEDITOR.getUrl(CKEDITOR.plugins.get("image").path+"images/noimage.png");this.preview&&this.preview.setAttribute("src",a);b&&b.setStyle("display","none");l(this,!1)},n=function(a){return CKEDITOR.tools.getNextId()+"_"+a},p=n("btnLockSizes"), +u=n("btnResetSize"),m=n("ImagePreviewLoader"),B=n("previewLink"),A=n("previewImage");return{title:d.lang.image["image"==j?"title":"titleButton"],minWidth:420,minHeight:360,onShow:function(){this.linkEditMode=this.imageEditMode=this.linkElement=this.imageElement=!1;this.lockRatio=!0;this.userlockRatio=0;this.dontResetSize=!1;this.firstLoad=!0;this.addLink=!1;var a=this.getParentEditor(),b=a.getSelection(),c=(b=b&&b.getSelectedElement())&&a.elementPath(b).contains("a",1),d=CKEDITOR.document.getById(m); +d&&d.setStyle("display","none");t=new CKEDITOR.dom.element("img",a.document);this.preview=CKEDITOR.document.getById(A);this.originalElement=a.document.createElement("img");this.originalElement.setAttribute("alt","");this.originalElement.setCustomData("isReady","false");if(c){this.linkElement=c;this.addLink=this.linkEditMode=!0;a=c.getChildren();if(1==a.count()&&(d=a.getItem(0),d.type==CKEDITOR.NODE_ELEMENT&&(d.is("img")||d.is("input"))))this.imageElement=a.getItem(0),this.imageElement.is("img")?this.imageEditMode= +"img":this.imageElement.is("input")&&(this.imageEditMode="input");"image"==j&&this.setupContent(2,c)}if(this.customImageElement)this.imageEditMode="img",this.imageElement=this.customImageElement,delete this.customImageElement;else if(b&&"img"==b.getName()&&!b.data("cke-realelement")||b&&"input"==b.getName()&&"image"==b.getAttribute("type"))this.imageEditMode=b.getName(),this.imageElement=b;this.imageEditMode&&(this.cleanImageElement=this.imageElement,this.imageElement=this.cleanImageElement.clone(!0, +!0),this.setupContent(e,this.imageElement));l(this,!0);CKEDITOR.tools.trim(this.getValueOf("info","txtUrl"))||(this.preview.removeAttribute("src"),this.preview.setStyle("display","none"))},onOk:function(){if(this.imageEditMode){var a=this.imageEditMode;"image"==j&&"input"==a&&confirm(d.lang.image.button2Img)?(this.imageElement=d.document.createElement("img"),this.imageElement.setAttribute("alt",""),d.insertElement(this.imageElement)):"image"!=j&&"img"==a&&confirm(d.lang.image.img2Button)?(this.imageElement= +d.document.createElement("input"),this.imageElement.setAttributes({type:"image",alt:""}),d.insertElement(this.imageElement)):(this.imageElement=this.cleanImageElement,delete this.cleanImageElement)}else"image"==j?this.imageElement=d.document.createElement("img"):(this.imageElement=d.document.createElement("input"),this.imageElement.setAttribute("type","image")),this.imageElement.setAttribute("alt","");this.linkEditMode||(this.linkElement=d.document.createElement("a"));this.commitContent(e,this.imageElement); +this.commitContent(2,this.linkElement);this.imageElement.getAttribute("style")||this.imageElement.removeAttribute("style");this.imageEditMode?!this.linkEditMode&&this.addLink?(d.insertElement(this.linkElement),this.imageElement.appendTo(this.linkElement)):this.linkEditMode&&!this.addLink&&(d.getSelection().selectElement(this.linkElement),d.insertElement(this.imageElement)):this.addLink?this.linkEditMode?this.linkElement.equals(d.getSelection().getSelectedElement())?(this.linkElement.setHtml(""),this.linkElement.append(this.imageElement, +!1)):d.insertElement(this.imageElement):(d.insertElement(this.linkElement),this.linkElement.append(this.imageElement,!1)):d.insertElement(this.imageElement)},onLoad:function(){"image"!=j&&this.hidePage("Link");var a=this._.element.getDocument();this.getContentElement("info","ratioLock")&&(this.addFocusable(a.getById(u),5),this.addFocusable(a.getById(p),5));this.commitContent=r},onHide:function(){this.preview&&this.commitContent(8,this.preview);this.originalElement&&(this.originalElement.removeListener("load", +q),this.originalElement.removeListener("error",h),this.originalElement.removeListener("abort",h),this.originalElement.remove(),this.originalElement=!1);delete this.imageElement},contents:[{id:"info",label:d.lang.image.infoTab,accessKey:"I",elements:[{type:"vbox",padding:0,children:[{type:"hbox",widths:["280px","110px"],align:"right",children:[{id:"txtUrl",type:"text",label:d.lang.common.url,required:!0,onChange:function(){var a=this.getDialog(),b=this.getValue();if(0<b.length){var a=this.getDialog(), +c=a.originalElement;a.preview&&a.preview.removeStyle("display");c.setCustomData("isReady","false");var d=CKEDITOR.document.getById(m);d&&d.setStyle("display","");c.on("load",q,a);c.on("error",h,a);c.on("abort",h,a);c.setAttribute("src",b);a.preview&&(t.setAttribute("src",b),a.preview.setAttribute("src",t.$.src),f(a))}else a.preview&&(a.preview.removeAttribute("src"),a.preview.setStyle("display","none"))},setup:function(a,b){if(a==e){var c=b.data("cke-saved-src")||b.getAttribute("src");this.getDialog().dontResetSize= +!0;this.setValue(c);this.setInitValue()}},commit:function(a,b){a==e&&(this.getValue()||this.isChanged())?(b.data("cke-saved-src",this.getValue()),b.setAttribute("src",this.getValue())):8==a&&(b.setAttribute("src",""),b.removeAttribute("src"))},validate:CKEDITOR.dialog.validate.notEmpty(d.lang.image.urlMissing)},{type:"button",id:"browse",style:"display:inline-block;margin-top:14px;",align:"center",label:d.lang.common.browseServer,hidden:!0,filebrowser:"info:txtUrl"}]}]},{id:"txtAlt",type:"text",label:d.lang.image.alt, +accessKey:"T","default":"",onChange:function(){f(this.getDialog())},setup:function(a,b){a==e&&this.setValue(b.getAttribute("alt"))},commit:function(a,b){a==e?(this.getValue()||this.isChanged())&&b.setAttribute("alt",this.getValue()):4==a?b.setAttribute("alt",this.getValue()):8==a&&b.removeAttribute("alt")}},{type:"hbox",children:[{id:"basic",type:"vbox",children:[{type:"hbox",requiredContent:"img{width,height}",widths:["50%","50%"],children:[{type:"vbox",padding:1,children:[{type:"text",width:"45px", +id:"txtWidth",label:d.lang.common.width,onKeyUp:x,onChange:function(){i.call(this,"advanced:txtdlgGenStyle")},validate:function(){var a=this.getValue().match(w);(a=!!(a&&0!==parseInt(a[1],10)))||alert(d.lang.common.invalidWidth);return a},setup:z,commit:function(a,b){var c=this.getValue();a==e?(c&&d.activeFilter.check("img{width,height}")?b.setStyle("width",CKEDITOR.tools.cssLength(c)):b.removeStyle("width"),b.removeAttribute("width")):4==a?c.match(k)?b.setStyle("width",CKEDITOR.tools.cssLength(c)): +(c=this.getDialog().originalElement,"true"==c.getCustomData("isReady")&&b.setStyle("width",c.$.width+"px")):8==a&&(b.removeAttribute("width"),b.removeStyle("width"))}},{type:"text",id:"txtHeight",width:"45px",label:d.lang.common.height,onKeyUp:x,onChange:function(){i.call(this,"advanced:txtdlgGenStyle")},validate:function(){var a=this.getValue().match(w);(a=!!(a&&0!==parseInt(a[1],10)))||alert(d.lang.common.invalidHeight);return a},setup:z,commit:function(a,b){var c=this.getValue();a==e?(c&&d.activeFilter.check("img{width,height}")? +b.setStyle("height",CKEDITOR.tools.cssLength(c)):b.removeStyle("height"),b.removeAttribute("height")):4==a?c.match(k)?b.setStyle("height",CKEDITOR.tools.cssLength(c)):(c=this.getDialog().originalElement,"true"==c.getCustomData("isReady")&&b.setStyle("height",c.$.height+"px")):8==a&&(b.removeAttribute("height"),b.removeStyle("height"))}}]},{id:"ratioLock",type:"html",style:"margin-top:30px;width:40px;height:40px;",onLoad:function(){var a=CKEDITOR.document.getById(u),b=CKEDITOR.document.getById(p); +a&&(a.on("click",function(a){y(this);a.data&&a.data.preventDefault()},this.getDialog()),a.on("mouseover",function(){this.addClass("cke_btn_over")},a),a.on("mouseout",function(){this.removeClass("cke_btn_over")},a));b&&(b.on("click",function(a){l(this);var b=this.originalElement,d=this.getValueOf("info","txtWidth");if(b.getCustomData("isReady")=="true"&&d){b=b.$.height/b.$.width*d;if(!isNaN(b)){this.setValueOf("info","txtHeight",Math.round(b));f(this)}}a.data&&a.data.preventDefault()},this.getDialog()), +b.on("mouseover",function(){this.addClass("cke_btn_over")},b),b.on("mouseout",function(){this.removeClass("cke_btn_over")},b))},html:'<div><a href="javascript:void(0)" tabindex="-1" title="'+d.lang.image.lockRatio+'" class="cke_btn_locked" id="'+p+'" role="checkbox"><span class="cke_icon"></span><span class="cke_label">'+d.lang.image.lockRatio+'</span></a><a href="javascript:void(0)" tabindex="-1" title="'+d.lang.image.resetSize+'" class="cke_btn_reset" id="'+u+'" role="button"><span class="cke_label">'+ +d.lang.image.resetSize+"</span></a></div>"}]},{type:"vbox",padding:1,children:[{type:"text",id:"txtBorder",requiredContent:"img{border-width}",width:"60px",label:d.lang.image.border,"default":"",onKeyUp:function(){f(this.getDialog())},onChange:function(){i.call(this,"advanced:txtdlgGenStyle")},validate:CKEDITOR.dialog.validate.integer(d.lang.image.validateBorder),setup:function(a,b){if(a==e){var c;c=(c=(c=b.getStyle("border-width"))&&c.match(/^(\d+px)(?: \1 \1 \1)?$/))&&parseInt(c[1],10);isNaN(parseInt(c, +10))&&(c=b.getAttribute("border"));this.setValue(c)}},commit:function(a,b){var c=parseInt(this.getValue(),10);a==e||4==a?(isNaN(c)?!c&&this.isChanged()&&b.removeStyle("border"):(b.setStyle("border-width",CKEDITOR.tools.cssLength(c)),b.setStyle("border-style","solid")),a==e&&b.removeAttribute("border")):8==a&&(b.removeAttribute("border"),b.removeStyle("border-width"),b.removeStyle("border-style"),b.removeStyle("border-color"))}},{type:"text",id:"txtHSpace",requiredContent:"img{margin-left,margin-right}", +width:"60px",label:d.lang.image.hSpace,"default":"",onKeyUp:function(){f(this.getDialog())},onChange:function(){i.call(this,"advanced:txtdlgGenStyle")},validate:CKEDITOR.dialog.validate.integer(d.lang.image.validateHSpace),setup:function(a,b){if(a==e){var c,d;c=b.getStyle("margin-left");d=b.getStyle("margin-right");c=c&&c.match(o);d=d&&d.match(o);c=parseInt(c,10);d=parseInt(d,10);c=c==d&&c;isNaN(parseInt(c,10))&&(c=b.getAttribute("hspace"));this.setValue(c)}},commit:function(a,b){var c=parseInt(this.getValue(), +10);a==e||4==a?(isNaN(c)?!c&&this.isChanged()&&(b.removeStyle("margin-left"),b.removeStyle("margin-right")):(b.setStyle("margin-left",CKEDITOR.tools.cssLength(c)),b.setStyle("margin-right",CKEDITOR.tools.cssLength(c))),a==e&&b.removeAttribute("hspace")):8==a&&(b.removeAttribute("hspace"),b.removeStyle("margin-left"),b.removeStyle("margin-right"))}},{type:"text",id:"txtVSpace",requiredContent:"img{margin-top,margin-bottom}",width:"60px",label:d.lang.image.vSpace,"default":"",onKeyUp:function(){f(this.getDialog())}, +onChange:function(){i.call(this,"advanced:txtdlgGenStyle")},validate:CKEDITOR.dialog.validate.integer(d.lang.image.validateVSpace),setup:function(a,b){if(a==e){var c,d;c=b.getStyle("margin-top");d=b.getStyle("margin-bottom");c=c&&c.match(o);d=d&&d.match(o);c=parseInt(c,10);d=parseInt(d,10);c=c==d&&c;isNaN(parseInt(c,10))&&(c=b.getAttribute("vspace"));this.setValue(c)}},commit:function(a,b){var c=parseInt(this.getValue(),10);a==e||4==a?(isNaN(c)?!c&&this.isChanged()&&(b.removeStyle("margin-top"),b.removeStyle("margin-bottom")): +(b.setStyle("margin-top",CKEDITOR.tools.cssLength(c)),b.setStyle("margin-bottom",CKEDITOR.tools.cssLength(c))),a==e&&b.removeAttribute("vspace")):8==a&&(b.removeAttribute("vspace"),b.removeStyle("margin-top"),b.removeStyle("margin-bottom"))}},{id:"cmbAlign",requiredContent:"img{float}",type:"select",widths:["35%","65%"],style:"width:90px",label:d.lang.common.align,"default":"",items:[[d.lang.common.notSet,""],[d.lang.common.alignLeft,"left"],[d.lang.common.alignRight,"right"]],onChange:function(){f(this.getDialog()); +i.call(this,"advanced:txtdlgGenStyle")},setup:function(a,b){if(a==e){var c=b.getStyle("float");switch(c){case "inherit":case "none":c=""}!c&&(c=(b.getAttribute("align")||"").toLowerCase());this.setValue(c)}},commit:function(a,b){var c=this.getValue();if(a==e||4==a){if(c?b.setStyle("float",c):b.removeStyle("float"),a==e)switch(c=(b.getAttribute("align")||"").toLowerCase(),c){case "left":case "right":b.removeAttribute("align")}}else 8==a&&b.removeStyle("float")}}]}]},{type:"vbox",height:"250px",children:[{type:"html", +id:"htmlPreview",style:"width:95%;",html:"<div>"+CKEDITOR.tools.htmlEncode(d.lang.common.preview)+'<br><div id="'+m+'" class="ImagePreviewLoader" style="display:none"><div class="loading"> </div></div><div class="ImagePreviewBox"><table><tr><td><a href="javascript:void(0)" target="_blank" onclick="return false;" id="'+B+'"><img id="'+A+'" alt="" /></a>'+(d.config.image_previewText||"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.")+ +"</td></tr></table></div></div>"}]}]}]},{id:"Link",requiredContent:"a[href]",label:d.lang.image.linkTab,padding:0,elements:[{id:"txtUrl",type:"text",label:d.lang.common.url,style:"width: 100%","default":"",setup:function(a,b){if(2==a){var c=b.data("cke-saved-href");c||(c=b.getAttribute("href"));this.setValue(c)}},commit:function(a,b){if(2==a&&(this.getValue()||this.isChanged())){var c=this.getValue();b.data("cke-saved-href",c);b.setAttribute("href",c);this.getValue()||!d.config.image_removeLinkByEmptyURL? +this.getDialog().addLink=!0:this.getDialog().addLink=!1}}},{type:"button",id:"browse",filebrowser:{action:"Browse",target:"Link:txtUrl",url:d.config.filebrowserImageBrowseLinkUrl},style:"float:right",hidden:!0,label:d.lang.common.browseServer},{id:"cmbTarget",type:"select",requiredContent:"a[target]",label:d.lang.common.target,"default":"",items:[[d.lang.common.notSet,""],[d.lang.common.targetNew,"_blank"],[d.lang.common.targetTop,"_top"],[d.lang.common.targetSelf,"_self"],[d.lang.common.targetParent, +"_parent"]],setup:function(a,b){2==a&&this.setValue(b.getAttribute("target")||"")},commit:function(a,b){2==a&&(this.getValue()||this.isChanged())&&b.setAttribute("target",this.getValue())}}]},{id:"Upload",hidden:!0,filebrowser:"uploadButton",label:d.lang.image.upload,elements:[{type:"file",id:"upload",label:d.lang.image.btnUpload,style:"height:40px",size:38},{type:"fileButton",id:"uploadButton",filebrowser:"info:txtUrl",label:d.lang.image.btnUpload,"for":["Upload","upload"]}]},{id:"advanced",label:d.lang.common.advancedTab, +elements:[{type:"hbox",widths:["50%","25%","25%"],children:[{type:"text",id:"linkId",requiredContent:"img[id]",label:d.lang.common.id,setup:function(a,b){a==e&&this.setValue(b.getAttribute("id"))},commit:function(a,b){a==e&&(this.getValue()||this.isChanged())&&b.setAttribute("id",this.getValue())}},{id:"cmbLangDir",type:"select",requiredContent:"img[dir]",style:"width : 100px;",label:d.lang.common.langDir,"default":"",items:[[d.lang.common.notSet,""],[d.lang.common.langDirLtr,"ltr"],[d.lang.common.langDirRtl, +"rtl"]],setup:function(a,b){a==e&&this.setValue(b.getAttribute("dir"))},commit:function(a,b){a==e&&(this.getValue()||this.isChanged())&&b.setAttribute("dir",this.getValue())}},{type:"text",id:"txtLangCode",requiredContent:"img[lang]",label:d.lang.common.langCode,"default":"",setup:function(a,b){a==e&&this.setValue(b.getAttribute("lang"))},commit:function(a,b){a==e&&(this.getValue()||this.isChanged())&&b.setAttribute("lang",this.getValue())}}]},{type:"text",id:"txtGenLongDescr",requiredContent:"img[longdesc]", +label:d.lang.common.longDescr,setup:function(a,b){a==e&&this.setValue(b.getAttribute("longDesc"))},commit:function(a,b){a==e&&(this.getValue()||this.isChanged())&&b.setAttribute("longDesc",this.getValue())}},{type:"hbox",widths:["50%","50%"],children:[{type:"text",id:"txtGenClass",requiredContent:"img(cke-xyz)",label:d.lang.common.cssClass,"default":"",setup:function(a,b){a==e&&this.setValue(b.getAttribute("class"))},commit:function(a,b){a==e&&(this.getValue()||this.isChanged())&&b.setAttribute("class", +this.getValue())}},{type:"text",id:"txtGenTitle",requiredContent:"img[title]",label:d.lang.common.advisoryTitle,"default":"",onChange:function(){f(this.getDialog())},setup:function(a,b){a==e&&this.setValue(b.getAttribute("title"))},commit:function(a,b){a==e?(this.getValue()||this.isChanged())&&b.setAttribute("title",this.getValue()):4==a?b.setAttribute("title",this.getValue()):8==a&&b.removeAttribute("title")}}]},{type:"text",id:"txtdlgGenStyle",requiredContent:"img{cke-xyz}",label:d.lang.common.cssStyle, +validate:CKEDITOR.dialog.validate.inlineStyle(d.lang.common.invalidInlineStyle),"default":"",setup:function(a,b){if(a==e){var c=b.getAttribute("style");!c&&b.$.style.cssText&&(c=b.$.style.cssText);this.setValue(c);var d=b.$.style.height,c=b.$.style.width,d=(d?d:"").match(k),c=(c?c:"").match(k);this.attributesInStyle={height:!!d,width:!!c}}},onChange:function(){i.call(this,"info:cmbFloat info:cmbAlign info:txtVSpace info:txtHSpace info:txtBorder info:txtWidth info:txtHeight".split(" "));f(this)},commit:function(a, +b){a==e&&(this.getValue()||this.isChanged())&&b.setAttribute("style",this.getValue())}}]}]}};CKEDITOR.dialog.add("image",function(d){return r(d,"image")});CKEDITOR.dialog.add("imagebutton",function(d){return r(d,"imagebutton")})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image/images/noimage.png b/zup-painel/assets/scripts/ckeditor/plugins/image/images/noimage.png new file mode 100644 index 0000000..1598113 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/image/images/noimage.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/dialogs/image2.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/dialogs/image2.js new file mode 100644 index 0000000..c609061 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/dialogs/image2.js @@ -0,0 +1,14 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("image2",function(i){function z(){var a=this.getValue().match(A);(a=!!(a&&0!==parseInt(a[1],10)))||alert(c["invalid"+CKEDITOR.tools.capitalize(this.id)]);return a}function K(){function a(a,b){d.push(j.once(a,function(a){for(var j;j=d.pop();)j.removeListener();b(a)}))}var j=p.createElement("img"),d=[];return function(d,b,c){a("load",function(){var a=B(j);b.call(c,j,a.width,a.height)});a("error",function(){b(null)});a("abort",function(){b(null)});j.setAttribute("src",(t.baseHref|| +"")+d+"?"+Math.random().toString(16).substring(2))}}function C(){var a=this.getValue();q(!1);a!==u.data.src?(D(a,function(a,d,b){q(!0);if(!a)return k(!1);g.setValue(!1===i.config.image2_prefillDimensions?0:d);h.setValue(!1===i.config.image2_prefillDimensions?0:b);r=d;s=b;k(E.checkHasNaturalRatio(a))}),l=!0):l?(q(!0),g.setValue(m),h.setValue(n),l=!1):q(!0)}function F(){if(e){var a=this.getValue();if(a&&(a.match(A)||k(!1),"0"!==a)){var b="width"==this.id,d=m||r,c=n||s,a=b?Math.round(c*(a/d)):Math.round(d* +(a/c));isNaN(a)||(b?h:g).setValue(a)}}}function k(a){if(f){if("boolean"==typeof a){if(v)return;e=a}else if(a=g.getValue(),v=!0,(e=!e)&&a)a*=n/m,isNaN(a)||h.setValue(Math.round(a));f[e?"removeClass":"addClass"]("cke_btn_unlocked");f.setAttribute("aria-checked",e);CKEDITOR.env.hc&&f.getChild(0).setHtml(e?CKEDITOR.env.ie?"■":"▣":CKEDITOR.env.ie?"□":"▢")}}function q(a){a=a?"enable":"disable";g[a]();h[a]()}var A=/(^\s*(\d+)(px)?\s*$)|^$/i,G=CKEDITOR.tools.getNextId(),H=CKEDITOR.tools.getNextId(),b=i.lang.image2, +c=i.lang.common,L=(new CKEDITOR.template('<div><a href="javascript:void(0)" tabindex="-1" title="'+b.lockRatio+'" class="cke_btn_locked" id="{lockButtonId}" role="checkbox"><span class="cke_icon"></span><span class="cke_label">'+b.lockRatio+'</span></a><a href="javascript:void(0)" tabindex="-1" title="'+b.resetSize+'" class="cke_btn_reset" id="{resetButtonId}" role="button"><span class="cke_label">'+b.resetSize+"</span></a></div>")).output({lockButtonId:G,resetButtonId:H}),E=CKEDITOR.plugins.image2, +t=i.config,w=i.widgets.registered.image.features,B=E.getNatural,p,u,I,D,m,n,r,s,l,e,v,f,o,g,h,x,y=!(!t.filebrowserImageBrowseUrl&&!t.filebrowserBrowseUrl),J=[{id:"src",type:"text",label:c.url,onKeyup:C,onChange:C,setup:function(a){this.setValue(a.data.src)},commit:function(a){a.setData("src",this.getValue())},validate:CKEDITOR.dialog.validate.notEmpty(b.urlMissing)}];y&&J.push({type:"button",id:"browse",style:"display:inline-block;margin-top:14px;",align:"center",label:i.lang.common.browseServer, +hidden:!0,filebrowser:"info:src"});return{title:b.title,minWidth:250,minHeight:100,onLoad:function(){p=this._.element.getDocument();D=K()},onShow:function(){u=this.widget;I=u.parts.image;l=v=e=!1;x=B(I);r=m=x.width;s=n=x.height},contents:[{id:"info",label:b.infoTab,elements:[{type:"vbox",padding:0,children:[{type:"hbox",widths:["100%"],children:J}]},{id:"alt",type:"text",label:b.alt,setup:function(a){this.setValue(a.data.alt)},commit:function(a){a.setData("alt",this.getValue())}},{type:"hbox",widths:["25%", +"25%","50%"],requiredContent:w.dimension.requiredContent,children:[{type:"text",width:"45px",id:"width",label:c.width,validate:z,onKeyUp:F,onLoad:function(){g=this},setup:function(a){this.setValue(a.data.width)},commit:function(a){a.setData("width",this.getValue())}},{type:"text",id:"height",width:"45px",label:c.height,validate:z,onKeyUp:F,onLoad:function(){h=this},setup:function(a){this.setValue(a.data.height)},commit:function(a){a.setData("height",this.getValue())}},{id:"lock",type:"html",style:"margin-top:18px;width:40px;height:20px;", +onLoad:function(){function a(a){a.on("mouseover",function(){this.addClass("cke_btn_over")},a);a.on("mouseout",function(){this.removeClass("cke_btn_over")},a)}var b=this.getDialog();f=p.getById(G);o=p.getById(H);f&&(b.addFocusable(f,4+y),f.on("click",function(a){k();a.data&&a.data.preventDefault()},this.getDialog()),a(f));o&&(b.addFocusable(o,5+y),o.on("click",function(a){if(l){g.setValue(r);h.setValue(s)}else{g.setValue(m);h.setValue(n)}a.data&&a.data.preventDefault()},this),a(o))},setup:function(a){k(a.data.lock)}, +commit:function(a){a.setData("lock",e)},html:L}]},{type:"hbox",id:"alignment",requiredContent:w.align.requiredContent,children:[{id:"align",type:"radio",items:[[c.alignNone,"none"],[c.alignLeft,"left"],[c.alignCenter,"center"],[c.alignRight,"right"]],label:c.align,setup:function(a){this.setValue(a.data.align)},commit:function(a){a.setData("align",this.getValue())}}]},{id:"hasCaption",type:"checkbox",label:b.captioned,requiredContent:w.caption.requiredContent,setup:function(a){this.setValue(a.data.hasCaption)}, +commit:function(a){a.setData("hasCaption",this.getValue())}}]},{id:"Upload",hidden:!0,filebrowser:"uploadButton",label:b.uploadTab,elements:[{type:"file",id:"upload",label:b.btnUpload,style:"height:40px"},{type:"fileButton",id:"uploadButton",filebrowser:"info:src",label:b.btnUpload,"for":["Upload","upload"]}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/icons/hidpi/image.png b/zup-painel/assets/scripts/ckeditor/plugins/image2/icons/hidpi/image.png new file mode 100644 index 0000000..b3c7ade Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/image2/icons/hidpi/image.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/icons/image.png b/zup-painel/assets/scripts/ckeditor/plugins/image2/icons/image.png new file mode 100644 index 0000000..fcf61b5 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/image2/icons/image.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/af.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/af.js new file mode 100644 index 0000000..d5ef461 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/af.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","af",{alt:"Alternatiewe teks",btnUpload:"Stuur na bediener",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Afbeelding informasie",lockRatio:"Vaste proporsie",menu:"Afbeelding eienskappe",pathName:"image",pathNameCaption:"caption",resetSize:"Herstel grootte",resizer:"Click and drag to resize",title:"Afbeelding eienskappe",uploadTab:"Oplaai",urlMissing:"Die URL na die afbeelding ontbreek."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ar.js new file mode 100644 index 0000000..435544b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ar.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ar",{alt:"عنوان الصورة",btnUpload:"أرسلها للخادم",captioned:"صورة ذات اسم",captionPlaceholder:"تسمية",infoTab:"معلومات الصورة",lockRatio:"تناسق الحجم",menu:"خصائص الصورة",pathName:"صورة",pathNameCaption:"تسمية",resetSize:"إستعادة الحجم الأصلي",resizer:"انقر ثم اسحب للتحجيم",title:"خصائص الصورة",uploadTab:"رفع",urlMissing:"عنوان مصدر الصورة مفقود"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/bg.js new file mode 100644 index 0000000..abb7ab5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/bg.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","bg",{alt:"Алтернативен текст",btnUpload:"Изпрати я на сървъра",captioned:"Надписано изображение",captionPlaceholder:"Надпис",infoTab:"Детайли за изображението",lockRatio:"Заключване на съотношението",menu:"Настройки на изображението",pathName:"изображение",pathNameCaption:"надпис",resetSize:"Нулиране на размер",resizer:"Кликни и влачи, за да преоразмериш",title:"Настройки на изображението",uploadTab:"Качване",urlMissing:"URL адреса на изображението липсва."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/bn.js new file mode 100644 index 0000000..93618a0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/bn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","bn",{alt:"বিকল্প টেক্সট",btnUpload:"ইহাকে সার্ভারে প্রেরন কর",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"ছবির তথ্য",lockRatio:"অনুপাত লক কর",menu:"ছবির প্রোপার্টি",pathName:"image",pathNameCaption:"caption",resetSize:"সাইজ পূর্বাবস্থায় ফিরিয়ে দাও",resizer:"Click and drag to resize",title:"ছবির প্রোপার্টি",uploadTab:"আপলোড",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/bs.js new file mode 100644 index 0000000..ff4ae29 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/bs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","bs",{alt:"Tekst na slici",btnUpload:"Šalji na server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info slike",lockRatio:"Zakljuèaj odnos",menu:"Svojstva slike",pathName:"image",pathNameCaption:"caption",resetSize:"Resetuj dimenzije",resizer:"Click and drag to resize",title:"Svojstva slike",uploadTab:"Šalji",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ca.js new file mode 100644 index 0000000..6e73ef3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ca",{alt:"Text alternatiu",btnUpload:"Envia-la al servidor",captioned:"Imatge amb subtítol",captionPlaceholder:"Títol",infoTab:"Informació de la imatge",lockRatio:"Bloqueja les proporcions",menu:"Propietats de la imatge",pathName:"imatge",pathNameCaption:"subtítol",resetSize:"Restaura la mida",resizer:"Clicar i arrossegar per redimensionar",title:"Propietats de la imatge",uploadTab:"Puja",urlMissing:"Falta la URL de la imatge."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/cs.js new file mode 100644 index 0000000..d148641 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","cs",{alt:"Alternativní text",btnUpload:"Odeslat na server",captioned:"Obrázek s popisem",captionPlaceholder:"Popis",infoTab:"Informace o obrázku",lockRatio:"Zámek",menu:"Vlastnosti obrázku",pathName:"Obrázek",pathNameCaption:"Popis",resetSize:"Původní velikost",resizer:"Klepněte a táhněte pro změnu velikosti",title:"Vlastnosti obrázku",uploadTab:"Odeslat",urlMissing:"Zadané URL zdroje obrázku nebylo nalezeno."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/cy.js new file mode 100644 index 0000000..031ba7e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/cy.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","cy",{alt:"Testun Amgen",btnUpload:"Anfon i'r Gweinydd",captioned:"Delwedd â phennawd",captionPlaceholder:"Caption",infoTab:"Gwyb Delwedd",lockRatio:"Cloi Cymhareb",menu:"Priodweddau Delwedd",pathName:"delwedd",pathNameCaption:"pennawd",resetSize:"Ailosod Maint",resizer:"Clicio a llusgo i ail-meintio",title:"Priodweddau Delwedd",uploadTab:"Lanlwytho",urlMissing:"URL gwreiddiol y ddelwedd ar goll."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/da.js new file mode 100644 index 0000000..655adb5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/da.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","da",{alt:"Alternativ tekst",btnUpload:"Upload fil til serveren",captioned:"Tekstet billede",captionPlaceholder:"Tekst",infoTab:"Generelt",lockRatio:"Lås størrelsesforhold",menu:"Egenskaber for billede",pathName:"billede",pathNameCaption:"tekst",resetSize:"Nulstil størrelse",resizer:"Klik og træk for at ændre størrelsen",title:"Egenskaber for billede",uploadTab:"Upload",urlMissing:"Kilde på billed-URL mangler"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/de.js new file mode 100644 index 0000000..68933ae --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","de",{alt:"Alternativer Text",btnUpload:"Zum Server senden",captioned:"Bild mit Überschrift",captionPlaceholder:"Überschrift",infoTab:"Bildinfo",lockRatio:"Größenverhältnis beibehalten",menu:"Bildeigenschaften",pathName:"Bild",pathNameCaption:"Überschrift",resetSize:"Größe zurücksetzen",resizer:"Zum Vergrößern auswählen und ziehen",title:"Bild-Eigenschaften",uploadTab:"Hochladen",urlMissing:"Bildquellen-URL fehlt."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/el.js new file mode 100644 index 0000000..65307e3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/el.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","el",{alt:"Εναλλακτικό Κείμενο",btnUpload:"Αποστολή στον Διακομιστή",captioned:"Εικόνα με λεζάντα",captionPlaceholder:"Λεζάντα",infoTab:"Πληροφορίες Εικόνας",lockRatio:"Κλείδωμα Αναλογίας",menu:"Ιδιότητες Εικόνας",pathName:"εικόνα",pathNameCaption:"λεζάντα",resetSize:"Επαναφορά Αρχικού Μεγέθους",resizer:"Κάνετε κλικ και σύρετε το ποντίκι για να αλλάξετε το μέγεθος",title:"Ιδιότητες Εικόνας",uploadTab:"Αποστολή",urlMissing:"Λείπει το πηγαίο URL της εικόνας."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en-au.js new file mode 100644 index 0000000..caab219 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en-au.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","en-au",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en-ca.js new file mode 100644 index 0000000..ec19b8f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","en-ca",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en-gb.js new file mode 100644 index 0000000..d5a9406 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en-gb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","en-gb",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en.js new file mode 100644 index 0000000..524e0a2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","en",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/eo.js new file mode 100644 index 0000000..26587e0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/eo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","eo",{alt:"Anstataŭiga Teksto",btnUpload:"Sendu al Servilo",captioned:"Bildo kun apudskribo",captionPlaceholder:"Apudskribo",infoTab:"Informoj pri Bildo",lockRatio:"Konservi Proporcion",menu:"Atributoj de Bildo",pathName:"bildo",pathNameCaption:"apudskribo",resetSize:"Origina Grando",resizer:"Kliki kaj treni por ŝanĝi la grandon",title:"Atributoj de Bildo",uploadTab:"Alŝuti",urlMissing:"La fontretadreso de la bildo mankas."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/es.js new file mode 100644 index 0000000..7e5fc7b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/es.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","es",{alt:"Texto Alternativo",btnUpload:"Enviar al Servidor",captioned:"Imagen subtitulada",captionPlaceholder:"Leyenda",infoTab:"Información de Imagen",lockRatio:"Proporcional",menu:"Propiedades de Imagen",pathName:"image",pathNameCaption:"subtítulo",resetSize:"Tamaño Original",resizer:"Dar clic y arrastrar para cambiar tamaño",title:"Propiedades de Imagen",uploadTab:"Cargar",urlMissing:"Debe indicar la URL de la imagen."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/et.js new file mode 100644 index 0000000..b8571db --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/et.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","et",{alt:"Alternatiivne tekst",btnUpload:"Saada serverisse",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Pildi info",lockRatio:"Lukusta kuvasuhe",menu:"Pildi omadused",pathName:"image",pathNameCaption:"caption",resetSize:"Lähtesta suurus",resizer:"Click and drag to resize",title:"Pildi omadused",uploadTab:"Lae üles",urlMissing:"Pildi lähte-URL on puudu."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/eu.js new file mode 100644 index 0000000..dadf5a3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/eu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","eu",{alt:"Ordezko Testua",btnUpload:"Zerbitzarira bidalia",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Irudi informazioa",lockRatio:"Erlazioa Blokeatu",menu:"Irudi Ezaugarriak",pathName:"image",pathNameCaption:"caption",resetSize:"Tamaina Berrezarri",resizer:"Click and drag to resize",title:"Irudi Ezaugarriak",uploadTab:"Gora kargatu",urlMissing:"Irudiaren iturburu URL-a falta da."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fa.js new file mode 100644 index 0000000..6600e16 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fa.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fa",{alt:"متن جایگزین",btnUpload:"به سرور بفرست",captioned:"تصویر زیرنویس شده",captionPlaceholder:"عنوان",infoTab:"اطلاعات تصویر",lockRatio:"قفل کردن نسبت",menu:"ویژگی​های تصویر",pathName:"تصویر",pathNameCaption:"عنوان",resetSize:"بازنشانی اندازه",resizer:"کلیک و کشیدن برای تغییر اندازه",title:"ویژگی​های تصویر",uploadTab:"بالاگذاری",urlMissing:"آدرس URL اصلی تصویر یافت نشد."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fi.js new file mode 100644 index 0000000..e4a104e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fi",{alt:"Vaihtoehtoinen teksti",btnUpload:"Lähetä palvelimelle",captioned:"Kuva kuvatekstillä",captionPlaceholder:"Kuvateksti",infoTab:"Kuvan tiedot",lockRatio:"Lukitse suhteet",menu:"Kuvan ominaisuudet",pathName:"kuva",pathNameCaption:"kuvateksti",resetSize:"Alkuperäinen koko",resizer:"Klikkaa ja raahaa muuttaaksesi kokoa",title:"Kuvan ominaisuudet",uploadTab:"Lisää tiedosto",urlMissing:"Kuvan lähdeosoite puuttuu."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fo.js new file mode 100644 index 0000000..a2bbfae --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fo",{alt:"Alternativur tekstur",btnUpload:"Send til ambætaran",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Myndaupplýsingar",lockRatio:"Læs lutfallið",menu:"Myndaeginleikar",pathName:"image",pathNameCaption:"caption",resetSize:"Upprunastødd",resizer:"Click and drag to resize",title:"Myndaeginleikar",uploadTab:"Send til ambætaran",urlMissing:"URL til mynd manglar."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fr-ca.js new file mode 100644 index 0000000..30cd9e9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fr-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fr-ca",{alt:"Texte alternatif",btnUpload:"Envoyer sur le serveur",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Informations sur l'image2",lockRatio:"Verrouiller les proportions",menu:"Propriétés de l'image2",pathName:"image",pathNameCaption:"caption",resetSize:"Taille originale",resizer:"Click and drag to resize",title:"Propriétés de l'image2",uploadTab:"Téléverser",urlMissing:"L'URL de la source de l'image est manquant."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fr.js new file mode 100644 index 0000000..2c7ed97 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fr",{alt:"Texte de remplacement",btnUpload:"Envoyer sur le serveur",captioned:"Image légendée",captionPlaceholder:"Légende",infoTab:"Informations sur l'image2",lockRatio:"Conserver les proportions",menu:"Propriétés de l'image2",pathName:"image",pathNameCaption:"légende",resetSize:"Taille d'origine",resizer:"Cliquer et glisser pour redimensionner",title:"Propriétés de l'image2",uploadTab:"Envoyer",urlMissing:"L'adresse source de l'image est manquante."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/gl.js new file mode 100644 index 0000000..844bd2b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","gl",{alt:"Texto alternativo",btnUpload:"Enviar ao servidor",captioned:"Imaxe con lenda",captionPlaceholder:"Lenda",infoTab:"Información da imaxe",lockRatio:"Proporcional",menu:"Propiedades da imaxe",pathName:"Imaxe",pathNameCaption:"lenda",resetSize:"Tamaño orixinal",resizer:"Prema e arrastre para axustar o tamaño",title:"Propiedades da imaxe",uploadTab:"Cargar",urlMissing:"Non se atopa o URL da imaxe."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/gu.js new file mode 100644 index 0000000..4e83249 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/gu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","gu",{alt:"ઑલ્ટર્નટ ટેક્સ્ટ",btnUpload:"આ સર્વરને મોકલવું",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"ચિત્ર ની જાણકારી",lockRatio:"લૉક ગુણોત્તર",menu:"ચિત્રના ગુણ",pathName:"image",pathNameCaption:"caption",resetSize:"રીસેટ સાઇઝ",resizer:"Click and drag to resize",title:"ચિત્રના ગુણ",uploadTab:"અપલોડ",urlMissing:"ઈમેજની મૂળ URL છે નહી."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/he.js new file mode 100644 index 0000000..ee688e0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/he.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","he",{alt:"טקסט חלופי",btnUpload:"שליחה לשרת",captioned:"כותרת תמונה",captionPlaceholder:"כותרת",infoTab:"מידע על התמונה",lockRatio:"נעילת היחס",menu:"תכונות התמונה",pathName:"תמונה",pathNameCaption:"כותרת",resetSize:"איפוס הגודל",resizer:"לחץ וגרור לשינוי הגודל",title:"מאפייני התמונה",uploadTab:"העלאה",urlMissing:"כתובת התמונה חסרה."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/hi.js new file mode 100644 index 0000000..ec9225d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/hi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","hi",{alt:"वैकल्पिक टेक्स्ट",btnUpload:"इसे सर्वर को भेजें",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"तस्वीर की जानकारी",lockRatio:"लॉक अनुपात",menu:"तस्वीर प्रॉपर्टीज़",pathName:"image",pathNameCaption:"caption",resetSize:"रीसॅट साइज़",resizer:"Click and drag to resize",title:"तस्वीर प्रॉपर्टीज़",uploadTab:"अपलोड",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/hr.js new file mode 100644 index 0000000..812813c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/hr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","hr",{alt:"Alternativni tekst",btnUpload:"Pošalji na server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info slike",lockRatio:"Zaključaj odnos",menu:"Svojstva slika",pathName:"image",pathNameCaption:"caption",resetSize:"Obriši veličinu",resizer:"Click and drag to resize",title:"Svojstva slika",uploadTab:"Pošalji",urlMissing:"Nedostaje URL slike."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/hu.js new file mode 100644 index 0000000..bffa8b8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/hu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","hu",{alt:"Buborék szöveg",btnUpload:"Küldés a szerverre",captioned:"Feliratozott kép",captionPlaceholder:"Képfelirat",infoTab:"Alaptulajdonságok",lockRatio:"Arány megtartása",menu:"Kép tulajdonságai",pathName:"kép",pathNameCaption:"felirat",resetSize:"Eredeti méret",resizer:"Kattints és húzz az átméretezéshez",title:"Kép tulajdonságai",uploadTab:"Feltöltés",urlMissing:"Hiányzik a kép URL-je"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/id.js new file mode 100644 index 0000000..a238cab --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/id.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","id",{alt:"Teks alternatif",btnUpload:"Kirim ke Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info Gambar",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Unggah",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/is.js new file mode 100644 index 0000000..196c68d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/is.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","is",{alt:"Baklægur texti",btnUpload:"Hlaða upp",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Almennt",lockRatio:"Festa stærðarhlutfall",menu:"Eigindi myndar",pathName:"image",pathNameCaption:"caption",resetSize:"Reikna stærð",resizer:"Click and drag to resize",title:"Eigindi myndar",uploadTab:"Senda upp",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/it.js new file mode 100644 index 0000000..d65b454 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","it",{alt:"Testo alternativo",btnUpload:"Invia al server",captioned:"Immagine con didascalia",captionPlaceholder:"Didascalia",infoTab:"Informazioni immagine",lockRatio:"Blocca rapporto",menu:"Proprietà immagine",pathName:"immagine",pathNameCaption:"didascalia",resetSize:"Reimposta dimensione",resizer:"Fare clic e trascinare per ridimensionare",title:"Proprietà immagine",uploadTab:"Carica",urlMissing:"Manca l'URL dell'immagine."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ja.js new file mode 100644 index 0000000..b4457fd --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ja.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ja",{alt:"代替テキスト",btnUpload:"サーバーに送信",captioned:"キャプションを付ける",captionPlaceholder:"キャプション",infoTab:"画像情報",lockRatio:"比率を固定",menu:"画像のプロパティ",pathName:"image",pathNameCaption:"caption",resetSize:"サイズをリセット",resizer:"ドラッグしてリサイズ",title:"画像のプロパティ",uploadTab:"アップロード",urlMissing:"画像のURLを入力してください。"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ka.js new file mode 100644 index 0000000..8840728 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ka.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ka",{alt:"სანაცვლო ტექსტი",btnUpload:"სერვერისთვის გაგზავნა",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"სურათის ინფორმცია",lockRatio:"პროპორციის შენარჩუნება",menu:"სურათის პარამეტრები",pathName:"image",pathNameCaption:"caption",resetSize:"ზომის დაბრუნება",resizer:"Click and drag to resize",title:"სურათის პარამეტრები",uploadTab:"აქაჩვა",urlMissing:"სურათის URL არაა შევსებული."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/km.js new file mode 100644 index 0000000..993429c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/km.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","km",{alt:"អត្ថបទជំនួស",btnUpload:"បញ្ជូនទៅកាន់ម៉ាស៊ីនផ្តល់សេវា",captioned:"រូប​ដែល​មាន​ចំណង​ជើង",captionPlaceholder:"Caption",infoTab:"ពត៌មានអំពីរូបភាព",lockRatio:"ចាក់​សោ​ផល​ធៀប",menu:"លក្ខណៈ​សម្បត្តិ​រូប​ភាព",pathName:"រូបភាព",pathNameCaption:"ចំណងជើង",resetSize:"កំណត់ទំហំឡើងវិញ",resizer:"ចុច​ហើយ​ទាញ​ដើម្បី​ប្ដូរ​ទំហំ",title:"លក្ខណៈ​សម្បត្តិ​រូប​ភាប",uploadTab:"ផ្ទុក​ឡើង",urlMissing:"ខ្វះ URL ប្រភព​រូប​ភាព។"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ko.js new file mode 100644 index 0000000..2b9e8f7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ko",{alt:"대체 문자열",btnUpload:"서버로 전송",captioned:"이미지 설명 넣기",captionPlaceholder:"설명",infoTab:"이미지 정보",lockRatio:"비율 유지",menu:"이미지 속성",pathName:"이미지",pathNameCaption:"설명",resetSize:"원래 크기로",resizer:"크기를 조절하려면 클릭 후 드래그 하세요",title:"이미지 속성",uploadTab:"업로드",urlMissing:"이미지 원본 주소(URL)가 없습니다."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ku.js new file mode 100644 index 0000000..fed115e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ku.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ku",{alt:"جێگرەوەی دەق",btnUpload:"ناردنی بۆ ڕاژه",captioned:"وێنەی بەسەردێر",captionPlaceholder:"سەردێر",infoTab:"زانیاری وێنه",lockRatio:"داخستنی ڕێژه",menu:"خاسیەتی وێنه",pathName:"وێنە",pathNameCaption:"سەردێر",resetSize:"ڕێکخستنەوەی قەباره",resizer:"کرتەبکە و ڕایبکێشە بۆ قەبارە گۆڕین",title:"خاسیەتی وێنه",uploadTab:"بارکردن",urlMissing:"سەرچاوەی بەستەری وێنه بزره"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/lt.js new file mode 100644 index 0000000..47b883d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/lt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","lt",{alt:"Alternatyvus Tekstas",btnUpload:"Siųsti į serverį",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Vaizdo informacija",lockRatio:"Išlaikyti proporciją",menu:"Vaizdo savybės",pathName:"image",pathNameCaption:"caption",resetSize:"Atstatyti dydį",resizer:"Click and drag to resize",title:"Vaizdo savybės",uploadTab:"Siųsti",urlMissing:"Paveiksliuko nuorodos nėra."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/lv.js new file mode 100644 index 0000000..069595d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/lv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","lv",{alt:"Alternatīvais teksts",btnUpload:"Nosūtīt serverim",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Informācija par attēlu",lockRatio:"Nemainīga Augstuma/Platuma attiecība",menu:"Attēla īpašības",pathName:"image",pathNameCaption:"caption",resetSize:"Atjaunot sākotnējo izmēru",resizer:"Click and drag to resize",title:"Attēla īpašības",uploadTab:"Augšupielādēt",urlMissing:"Trūkst attēla atrašanās adrese."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/mk.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/mk.js new file mode 100644 index 0000000..0d5b35e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/mk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","mk",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/mn.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/mn.js new file mode 100644 index 0000000..f2d437f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/mn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","mn",{alt:"Зургийг орлох бичвэр",btnUpload:"Үүнийг сервэррүү илгээ",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Зурагны мэдээлэл",lockRatio:"Радио түгжих",menu:"Зураг",pathName:"image",pathNameCaption:"caption",resetSize:"хэмжээ дахин оноох",resizer:"Click and drag to resize",title:"Зураг",uploadTab:"Илгээж ачаалах",urlMissing:"Зургийн эх сурвалжийн хаяг (URL) байхгүй байна."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ms.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ms.js new file mode 100644 index 0000000..8d1d665 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ms.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ms",{alt:"Text Alternatif",btnUpload:"Hantar ke Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info Imej",lockRatio:"Tetapkan Nisbah",menu:"Ciri-ciri Imej",pathName:"image",pathNameCaption:"caption",resetSize:"Saiz Set Semula",resizer:"Click and drag to resize",title:"Ciri-ciri Imej",uploadTab:"Muat Naik",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/nb.js new file mode 100644 index 0000000..2f237a6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","nb",{alt:"Alternativ tekst",btnUpload:"Send det til serveren",captioned:"Bilde med bildetekst",captionPlaceholder:"Bildetekst",infoTab:"Bildeinformasjon",lockRatio:"Lås forhold",menu:"Bildeegenskaper",pathName:"bilde",pathNameCaption:"bildetekst",resetSize:"Tilbakestill størrelse",resizer:"Klikk og dra for å endre størrelse",title:"Bildeegenskaper",uploadTab:"Last opp",urlMissing:"Bildets adresse mangler."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/nl.js new file mode 100644 index 0000000..f032d84 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","nl",{alt:"Alternatieve tekst",btnUpload:"Naar server verzenden",captioned:"Afbeelding met onderschrift",captionPlaceholder:"Onderschrift",infoTab:"Afbeeldingsinformatie",lockRatio:"Verhouding vergrendelen",menu:"Eigenschappen afbeelding",pathName:"afbeelding",pathNameCaption:"onderschrift",resetSize:"Afmetingen herstellen",resizer:"Klik en sleep om te herschalen",title:"Afbeeldingseigenschappen",uploadTab:"Uploaden",urlMissing:"De URL naar de afbeelding ontbreekt."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/no.js new file mode 100644 index 0000000..11bffbb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/no.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","no",{alt:"Alternativ tekst",btnUpload:"Send det til serveren",captioned:"Bilde med bildetekst",captionPlaceholder:"Caption",infoTab:"Bildeinformasjon",lockRatio:"Lås forhold",menu:"Bildeegenskaper",pathName:"bilde",pathNameCaption:"bildetekst",resetSize:"Tilbakestill størrelse",resizer:"Klikk og dra for å endre størrelse",title:"Bildeegenskaper",uploadTab:"Last opp",urlMissing:"Bildets adresse mangler."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/pl.js new file mode 100644 index 0000000..09e19e3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","pl",{alt:"Tekst zastępczy",btnUpload:"Wyślij",captioned:"Obrazek z podpisem",captionPlaceholder:"Podpis",infoTab:"Informacje o obrazku",lockRatio:"Zablokuj proporcje",menu:"Właściwości obrazka",pathName:"obrazek",pathNameCaption:"podpis",resetSize:"Przywróć rozmiar",resizer:"Kliknij i przeciągnij, by zmienić rozmiar.",title:"Właściwości obrazka",uploadTab:"Wyślij",urlMissing:"Podaj adres URL obrazka."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/pt-br.js new file mode 100644 index 0000000..82c42e8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/pt-br.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","pt-br",{alt:"Texto Alternativo",btnUpload:"Enviar para o Servidor",captioned:"Legenda da Imagem",captionPlaceholder:"Legenda",infoTab:"Informações da Imagem",lockRatio:"Travar Proporções",menu:"Formatar Imagem",pathName:"Imagem",pathNameCaption:"Legenda",resetSize:"Redefinir para o Tamanho Original",resizer:"Click e arraste para redimensionar",title:"Formatar Imagem",uploadTab:"Enviar ao Servidor",urlMissing:"URL da imagem está faltando."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/pt.js new file mode 100644 index 0000000..99b56c7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/pt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","pt",{alt:"Texto Alternativo",btnUpload:"Enviar para o Servidor",captioned:"Imagem legendada",captionPlaceholder:"Legenda",infoTab:"Informação da Imagem",lockRatio:"Proporcional",menu:"Propriedades da Imagem",pathName:"imagem",pathNameCaption:"legenda",resetSize:"Tamanho Original",resizer:"Clique e arraste para redimensionar",title:"Propriedades da Imagem",uploadTab:"Enviar",urlMissing:"O URL da fonte da imagem está em falta."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ro.js new file mode 100644 index 0000000..8f86089 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ro.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ro",{alt:"Text alternativ",btnUpload:"Trimite la server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Informaţii despre imagine",lockRatio:"Păstrează proporţiile",menu:"Proprietăţile imaginii",pathName:"image",pathNameCaption:"caption",resetSize:"Resetează mărimea",resizer:"Click and drag to resize",title:"Proprietăţile imaginii",uploadTab:"Încarcă",urlMissing:"Sursa URL a imaginii lipsește."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ru.js new file mode 100644 index 0000000..52de968 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ru",{alt:"Альтернативный текст",btnUpload:"Загрузить на сервер",captioned:"Отображать название",captionPlaceholder:"Название",infoTab:"Данные об изображении",lockRatio:"Сохранять пропорции",menu:"Свойства изображения",pathName:"изображение",pathNameCaption:"название",resetSize:"Вернуть обычные размеры",resizer:"Нажмите и растяните",title:"Свойства изображения",uploadTab:"Загрузка файла",urlMissing:"Не указана ссылка на изображение."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/si.js new file mode 100644 index 0000000..5ab518c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/si.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","si",{alt:"විකල්ප ",btnUpload:"සේවාදායකය වෙත යොමුකිරිම",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"රුපයේ තොරතුරු",lockRatio:"නවතන අනුපාතය ",menu:"රුපයේ ගුණ",pathName:"image",pathNameCaption:"caption",resetSize:"නැවතත් විශාලත්වය වෙනස් කිරීම",resizer:"Click and drag to resize",title:"රුපයේ ",uploadTab:"උඩුගතකිරීම",urlMissing:"රුප මුලාශ්‍ර URL නැත."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sk.js new file mode 100644 index 0000000..1877884 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sk",{alt:"Alternatívny text",btnUpload:"Odoslať to na server",captioned:"Opísaný obrázok",captionPlaceholder:"Popis",infoTab:"Informácie o obrázku",lockRatio:"Pomer zámky",menu:"Vlastnosti obrázka",pathName:"obrázok",pathNameCaption:"popis",resetSize:"Pôvodná veľkosť",resizer:"Kliknite a potiahnite pre zmenu veľkosti",title:"Vlastnosti obrázka",uploadTab:"Nahrať",urlMissing:"Chýba URL zdroja obrázka."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sl.js new file mode 100644 index 0000000..aced917 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sl",{alt:"Nadomestno besedilo",btnUpload:"Pošlji na strežnik",captioned:"Podnaslovljena slika",captionPlaceholder:"Napis",infoTab:"Podatki o sliki",lockRatio:"Zakleni razmerje",menu:"Lastnosti slike",pathName:"slika",pathNameCaption:"napis",resetSize:"Ponastavi velikost",resizer:"Kliknite in povlecite, da spremeniti velikost",title:"Lastnosti slike",uploadTab:"Naloži",urlMissing:"Manjka vir (URL) slike."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sq.js new file mode 100644 index 0000000..fc15d86 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sq.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sq",{alt:"Tekst Alternativ",btnUpload:"Dërgo në server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Informacione mbi Fotografinë",lockRatio:"Mbyll Racionin",menu:"Karakteristikat e Fotografisë",pathName:"foto",pathNameCaption:"caption",resetSize:"Rikthe Madhësinë",resizer:"Click and drag to resize",title:"Karakteristikat e Fotografisë",uploadTab:"Ngarko",urlMissing:"Mungon URL e burimit të fotografisë."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sr-latn.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sr-latn.js new file mode 100644 index 0000000..287f026 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sr-latn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sr-latn",{alt:"Alternativni tekst",btnUpload:"Pošalji na server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info slike",lockRatio:"Zaključaj odnos",menu:"Osobine slika",pathName:"image",pathNameCaption:"caption",resetSize:"Resetuj veličinu",resizer:"Click and drag to resize",title:"Osobine slika",uploadTab:"Pošalji",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sr.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sr.js new file mode 100644 index 0000000..18857fb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sr",{alt:"Алтернативни текст",btnUpload:"Пошаљи на сервер",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Инфо слике",lockRatio:"Закључај однос",menu:"Особине слика",pathName:"image",pathNameCaption:"caption",resetSize:"Ресетуј величину",resizer:"Click and drag to resize",title:"Особине слика",uploadTab:"Пошаљи",urlMissing:"Недостаје УРЛ слике."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sv.js new file mode 100644 index 0000000..2c5ed3f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/sv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sv",{alt:"Alternativ text",btnUpload:"Skicka till server",captioned:"Rubricerad bild",captionPlaceholder:"Bildtext",infoTab:"Bildinformation",lockRatio:"Lås höjd/bredd förhållanden",menu:"Bildegenskaper",pathName:"bild",pathNameCaption:"rubrik",resetSize:"Återställ storlek",resizer:"Klicka och drag för att ändra storlek",title:"Bildegenskaper",uploadTab:"Ladda upp",urlMissing:"Bildkällans URL saknas."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/th.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/th.js new file mode 100644 index 0000000..636814d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/th.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","th",{alt:"คำประกอบรูปภาพ",btnUpload:"อัพโหลดไฟล์ไปเก็บไว้ที่เครื่องแม่ข่าย (เซิร์ฟเวอร์)",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"ข้อมูลของรูปภาพ",lockRatio:"กำหนดอัตราส่วน กว้าง-สูง แบบคงที่",menu:"คุณสมบัติของ รูปภาพ",pathName:"image",pathNameCaption:"caption",resetSize:"กำหนดรูปเท่าขนาดจริง",resizer:"Click and drag to resize",title:"คุณสมบัติของ รูปภาพ",uploadTab:"อัพโหลดไฟล์",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/tr.js new file mode 100644 index 0000000..617a8a1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","tr",{alt:"Alternatif Yazı",btnUpload:"Sunucuya Yolla",captioned:"Başlıklı resim",captionPlaceholder:"Başlık",infoTab:"Resim Bilgisi",lockRatio:"Oranı Kilitle",menu:"Resim Özellikleri",pathName:"Resim",pathNameCaption:"başlık",resetSize:"Boyutu Başa Döndür",resizer:"Boyutlandırmak için, tıklayın ve sürükleyin",title:"Resim Özellikleri",uploadTab:"Karşıya Yükle",urlMissing:"Resmin URL kaynağı bulunamadı."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/tt.js new file mode 100644 index 0000000..2133d73 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/tt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","tt",{alt:"Альтернатив текст",btnUpload:"Серверга җибәрү",captioned:"Исеме куелган рәсем",captionPlaceholder:"Исем",infoTab:"Рәсем тасвирламасы",lockRatio:"Lock Ratio",menu:"Рәсем үзлекләре",pathName:"рәсем",pathNameCaption:"исем",resetSize:"Баштагы зурлык",resizer:"Күчереп куер өчен басып шудырыгыз",title:"Рәсем үзлекләре",uploadTab:"Йөкләү",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ug.js new file mode 100644 index 0000000..7913ee9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/ug.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ug",{alt:"تېكىست ئالماشتۇر",btnUpload:"مۇلازىمېتىرغا يۈكلە",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"سۈرەت",lockRatio:"نىسبەتنى قۇلۇپلا",menu:"سۈرەت خاسلىقى",pathName:"image",pathNameCaption:"caption",resetSize:"ئەسلى چوڭلۇق",resizer:"Click and drag to resize",title:"سۈرەت خاسلىقى",uploadTab:"يۈكلە",urlMissing:"سۈرەتنىڭ ئەسلى ھۆججەت ئادرېسى كەم"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/uk.js new file mode 100644 index 0000000..989eb55 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/uk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","uk",{alt:"Альтернативний текст",btnUpload:"Надіслати на сервер",captioned:"Підписане зображення",captionPlaceholder:"Caption",infoTab:"Інформація про зображення",lockRatio:"Зберегти пропорції",menu:"Властивості зображення",pathName:"Зображення",pathNameCaption:"заголовок",resetSize:"Очистити поля розмірів",resizer:"Клікніть та потягніть для зміни розмірів",title:"Властивості зображення",uploadTab:"Надіслати",urlMissing:"Вкажіть URL зображення."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/vi.js new file mode 100644 index 0000000..863c40d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/vi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","vi",{alt:"Chú thích ảnh",btnUpload:"Tải lên máy chủ",captioned:"Ảnh có chú thích",captionPlaceholder:"Nhãn",infoTab:"Thông tin của ảnh",lockRatio:"Giữ nguyên tỷ lệ",menu:"Thuộc tính của ảnh",pathName:"ảnh",pathNameCaption:"chú thích",resetSize:"Kích thước gốc",resizer:"Kéo rê để thay đổi kích cỡ",title:"Thuộc tính của ảnh",uploadTab:"Tải lên",urlMissing:"Thiếu đường dẫn hình ảnh"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/zh-cn.js new file mode 100644 index 0000000..3209b92 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","zh-cn",{alt:"替换文本",btnUpload:"上传到服务器",captioned:"带标题图像",captionPlaceholder:"标题",infoTab:"图像信息",lockRatio:"锁定比例",menu:"图像属性",pathName:"图像",pathNameCaption:"标题",resetSize:"原始尺寸",resizer:"点击并拖拽以改变尺寸",title:"图像属性",uploadTab:"上传",urlMissing:"缺少图像源文件地址"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/zh.js new file mode 100644 index 0000000..f07e2e5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","zh",{alt:"替代文字",btnUpload:"傳送至伺服器",captioned:"已加標題之圖片",captionPlaceholder:"標題",infoTab:"影像資訊",lockRatio:"固定比例",menu:"影像屬性",pathName:"圖片",pathNameCaption:"標題",resetSize:"重設大小",resizer:"拖曳以改變大小",title:"影像屬性",uploadTab:"上傳",urlMissing:"遺失圖片來源之 URL "}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/image2/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/image2/plugin.js new file mode 100644 index 0000000..adff7a8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/image2/plugin.js @@ -0,0 +1,30 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function A(a){function b(){this.deflated||(a.widgets.focused==this.widget&&(this.focused=!0),a.widgets.destroy(this.widget),this.deflated=!0)}function e(){var d=a.editable(),c=a.document;if(this.deflated)this.widget=a.widgets.initOn(this.element,"image",this.widget.data),this.widget.inline&&!(new CKEDITOR.dom.elementPath(this.widget.wrapper,d)).block&&(d=c.createElement(a.activeEnterMode==CKEDITOR.ENTER_P?"p":"div"),d.replace(this.widget.wrapper),this.widget.wrapper.move(d)),this.focused&& +(this.widget.focus(),delete this.focused),delete this.deflated;else{var b=this.widget,d=f,c=b.wrapper,e=b.data.align,b=b.data.hasCaption;if(d){for(var j=3;j--;)c.removeClass(d[j]);"center"==e?b&&c.addClass(d[1]):"none"!=e&&c.addClass(d[n[e]])}else"center"==e?(b?c.setStyle("text-align","center"):c.removeStyle("text-align"),c.removeStyle("float")):("none"==e?c.removeStyle("float"):c.setStyle("float",e),c.removeStyle("text-align"))}}var f=a.config.image2_alignClasses,g=a.config.image2_captionedClass; +return{allowedContent:B(a),requiredContent:"img[src,alt]",features:C(a),styleableElements:"img figure",contentTransformations:[["img[width]: sizeToAttribute"]],editables:{caption:{selector:"figcaption",allowedContent:"br em strong sub sup u s; a[!href]"}},parts:{image:"img",caption:"figcaption"},dialog:"image2",template:z,data:function(){var d=this.features;this.data.hasCaption&&!a.filter.checkFeature(d.caption)&&(this.data.hasCaption=!1);"none"!=this.data.align&&!a.filter.checkFeature(d.align)&& +(this.data.align="none");this.shiftState({widget:this,element:this.element,oldData:this.oldData,newData:this.data,deflate:b,inflate:e});this.data.link?this.parts.link||(this.parts.link=this.parts.image.getParent()):this.parts.link&&delete this.parts.link;this.parts.image.setAttributes({src:this.data.src,"data-cke-saved-src":this.data.src,alt:this.data.alt});if(this.oldData&&!this.oldData.hasCaption&&this.data.hasCaption)for(var c in this.data.classes)this.parts.image.removeClass(c);if(a.filter.checkFeature(d.dimension)){d= +this.data;d={width:d.width,height:d.height};c=this.parts.image;for(var f in d)d[f]?c.setAttribute(f,d[f]):c.removeAttribute(f)}this.oldData=CKEDITOR.tools.extend({},this.data)},init:function(){var b=CKEDITOR.plugins.image2,c=this.parts.image,e={hasCaption:!!this.parts.caption,src:c.getAttribute("src"),alt:c.getAttribute("alt")||"",width:c.getAttribute("width")||"",height:c.getAttribute("height")||"",lock:this.ready?b.checkHasNaturalRatio(c):!0},g=c.getAscendant("a");g&&this.wrapper.contains(g)&&(this.parts.link= +g);e.align||(c=e.hasCaption?this.element:c,f?(c.hasClass(f[0])?e.align="left":c.hasClass(f[2])&&(e.align="right"),e.align?c.removeClass(f[n[e.align]]):e.align="none"):(e.align=c.getStyle("float")||"none",c.removeStyle("float")));if(a.plugins.link&&this.parts.link&&(e.link=CKEDITOR.plugins.link.parseLinkAttributes(a,this.parts.link),(c=e.link.advanced)&&c.advCSSClasses))c.advCSSClasses=CKEDITOR.tools.trim(c.advCSSClasses.replace(/cke_\S+/,""));this.wrapper[(e.hasCaption?"remove":"add")+"Class"]("cke_image_nocaption"); +this.setData(e);a.filter.checkFeature(this.features.dimension)&&!0!==a.config.image2_disableResizer&&D(this);this.shiftState=b.stateShifter(this.editor);this.on("contextMenu",function(a){a.data.image=CKEDITOR.TRISTATE_OFF;if(this.parts.link||this.wrapper.getAscendant("a"))a.data.link=a.data.unlink=CKEDITOR.TRISTATE_OFF});this.on("dialog",function(a){a.data.widget=this},this)},addClass:function(a){k(this).addClass(a)},hasClass:function(a){return k(this).hasClass(a)},removeClass:function(a){k(this).removeClass(a)}, +getClasses:function(){var a=RegExp("^("+[].concat(g,f).join("|")+")$");return function(){var b=this.repository.parseElementClasses(k(this).getAttribute("class")),e;for(e in b)a.test(e)&&delete b[e];return b}}(),upcast:E(a),downcast:F(a)}}function E(a){var b=l(a),e=a.config.image2_captionedClass;return function(a,g){var d={width:1,height:1},c=a.name,h;if(!a.attributes["data-cke-realelement"]){if(b(a)){if("div"==c&&(h=a.getFirst("figure")))a.replaceWith(h),a=h;g.align="center";h=a.getFirst("img")|| +a.getFirst("a").getFirst("img")}else"figure"==c&&a.hasClass(e)?h=a.getFirst("img")||a.getFirst("a").getFirst("img"):o(a)&&(h="a"==a.name?a.children[0]:a);if(h){for(var y in d)(c=h.attributes[y])&&c.match(G)&&delete h.attributes[y];return a}}}}function F(a){var b=a.config.image2_alignClasses;return function(a){var f="a"==a.name?a.getFirst():a,g=f.attributes,d=this.data.align;if(!this.inline){var c=a.getFirst("span");c&&c.replaceWith(c.getFirst({img:1,a:1}))}d&&"none"!=d&&(c=CKEDITOR.tools.parseCssText(g.style|| +""),"center"==d&&"figure"==a.name?a=a.wrapWith(new CKEDITOR.htmlParser.element("div",b?{"class":b[1]}:{style:"text-align:center"})):d in{left:1,right:1}&&(b?f.addClass(b[n[d]]):c["float"]=d),!b&&!CKEDITOR.tools.isEmpty(c)&&(g.style=CKEDITOR.tools.writeCssText(c)));return a}}function l(a){var b=a.config.image2_captionedClass,e=a.config.image2_alignClasses,f={figure:1,a:1,img:1};return function(g){if(!(g.name in{div:1,p:1}))return!1;var d=g.children;if(1!==d.length)return!1;d=d[0];if(!(d.name in f))return!1; +if("p"==g.name){if(!o(d))return!1}else if("figure"==d.name){if(!d.hasClass(b))return!1}else if(a.enterMode==CKEDITOR.ENTER_P||!o(d))return!1;return(e?g.hasClass(e[1]):"center"==CKEDITOR.tools.parseCssText(g.attributes.style||"",!0)["text-align"])?!0:!1}}function o(a){return"img"==a.name?!0:"a"==a.name?1==a.children.length&&a.getFirst("img"):!1}function D(a){var b=a.editor,e=b.editable(),f=b.document,g=a.resizer=f.createElement("span");g.addClass("cke_image_resizer");g.setAttribute("title",b.lang.image2.resizer); +g.append(new CKEDITOR.dom.text("​",f));if(a.inline)a.wrapper.append(g);else{var d=a.parts.link||a.parts.image,c=d.getParent(),h=f.createElement("span");h.addClass("cke_image_resizer_wrapper");h.append(d);h.append(g);a.element.append(h,!0);c.is("span")&&c.remove()}g.on("mousedown",function(c){function j(a,b,c){var d=CKEDITOR.document,j=[];f.equals(d)||j.push(d.on(a,b));j.push(f.on(a,b));if(c)for(a=j.length;a--;)c.push(j.pop())}function d(){p=k+w*t;q=Math.round(p/r)}function s(){q=n-m;p=Math.round(q* +r)}var h=a.parts.image,w="right"==a.data.align?-1:1,i=c.data.$.screenX,H=c.data.$.screenY,k=h.$.clientWidth,n=h.$.clientHeight,r=k/n,l=[],o="cke_image_s"+(!~w?"w":"e"),x,p,q,v,t,m,u;b.fire("saveSnapshot");j("mousemove",function(a){x=a.data.$;t=x.screenX-i;m=H-x.screenY;u=Math.abs(t/m);1==w?0>=t?0>=m?d():u>=r?d():s():0>=m?u>=r?s():d():s():0>=t?0>=m?u>=r?s():d():s():0>=m?d():u>=r?d():s();15<=p&&15<=q?(h.setAttributes({width:p,height:q}),v=!0):v=!1},l);j("mouseup",function(){for(var c;c=l.pop();)c.removeListener(); +e.removeClass(o);g.removeClass("cke_image_resizing");v&&(a.setData({width:p,height:q}),b.fire("saveSnapshot"));v=!1},l);e.addClass(o);g.addClass("cke_image_resizing")});a.on("data",function(){g["right"==a.data.align?"addClass":"removeClass"]("cke_image_resizer_left")})}function I(a){var b=[],e;return function(f){var g=a.getCommand("justify"+f);if(g){b.push(function(){g.refresh(a,a.elementPath())});if(f in{right:1,left:1,center:1})g.on("exec",function(d){var c=i(a);if(c){c.setData("align",f);for(c= +b.length;c--;)b[c]();d.cancel()}});g.on("refresh",function(b){var c=i(a),g={right:1,left:1,center:1};c&&(void 0===e&&(e=a.filter.checkFeature(a.widgets.registered.image.features.align)),e?this.setState(c.data.align==f?CKEDITOR.TRISTATE_ON:f in g?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED):this.setState(CKEDITOR.TRISTATE_DISABLED),b.cancel())})}}}function J(a){a.plugins.link&&(CKEDITOR.on("dialogDefinition",function(b){b=b.data;if("link"==b.name){var b=b.definition,e=b.onShow,f=b.onOk;b.onShow= +function(){var b=i(a);b&&(b.inline?!b.wrapper.getAscendant("a"):1)?this.setupContent(b.data.link||{}):e.apply(this,arguments)};b.onOk=function(){var b=i(a);if(b&&(b.inline?!b.wrapper.getAscendant("a"):1)){var d={};this.commitContent(d);b.setData("link",d)}else f.apply(this,arguments)}}}),a.getCommand("unlink").on("exec",function(b){var e=i(a);e&&e.parts.link&&(e.setData("link",null),this.refresh(a,a.elementPath()),b.cancel())}),a.getCommand("unlink").on("refresh",function(b){var e=i(a);e&&(this.setState(e.data.link|| +e.wrapper.getAscendant("a")?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED),b.cancel())}))}function i(a){return(a=a.widgets.focused)&&"image"==a.name?a:null}function B(a){var b=a.config.image2_alignClasses,a={div:{match:l(a)},p:{match:l(a)},img:{attributes:"!src,alt,width,height"},figure:{classes:"!"+a.config.image2_captionedClass},figcaption:!0};b?(a.div.classes=b[1],a.p.classes=a.div.classes,a.img.classes=b[0]+","+b[2],a.figure.classes+=","+a.img.classes):(a.div.styles="text-align",a.p.styles= +"text-align",a.img.styles="float",a.figure.styles="float,display");return a}function C(a){a=a.config.image2_alignClasses;return{dimension:{requiredContent:"img[width,height]"},align:{requiredContent:"img"+(a?"("+a[0]+")":"{float}")},caption:{requiredContent:"figcaption"}}}function k(a){return a.data.hasCaption?a.element:a.parts.image}var z='<img alt="" src="" />',K=new CKEDITOR.template('<figure class="{captionedClass}">'+z+"<figcaption>{captionPlaceholder}</figcaption></figure>"),n={left:0,center:1, +right:2},G=/^\s*(\d+\%)\s*$/i;CKEDITOR.plugins.add("image2",{lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",requires:"widget,dialog",icons:"image",hidpi:!0,onLoad:function(){CKEDITOR.addCss(".cke_image_nocaption{line-height:0}.cke_editable.cke_image_sw, .cke_editable.cke_image_sw *{cursor:sw-resize !important}.cke_editable.cke_image_se, .cke_editable.cke_image_se *{cursor:se-resize !important}.cke_image_resizer{display:none;position:absolute;width:10px;height:10px;bottom:-5px;right:-5px;background:#000;outline:1px solid #fff;line-height:0;cursor:se-resize;}.cke_image_resizer_wrapper{position:relative;display:inline-block;line-height:0;}.cke_image_resizer.cke_image_resizer_left{right:auto;left:-5px;cursor:sw-resize;}.cke_widget_wrapper:hover .cke_image_resizer,.cke_image_resizer.cke_image_resizing{display:block}.cke_widget_wrapper>a{display:inline-block}")}, +init:function(a){var b=a.config,e=a.lang.image2,f=A(a);b.filebrowserImage2BrowseUrl=b.filebrowserImageBrowseUrl;b.filebrowserImage2UploadUrl=b.filebrowserImageUploadUrl;f.pathName=e.pathName;f.editables.caption.pathName=e.pathNameCaption;a.widgets.add("image",f);a.ui.addButton&&a.ui.addButton("Image",{label:a.lang.common.image,command:"image",toolbar:"insert,10"});a.contextMenu&&(a.addMenuGroup("image",10),a.addMenuItem("image",{label:e.menu,command:"image",group:"image"}));CKEDITOR.dialog.add("image2", +this.path+"dialogs/image2.js")},afterInit:function(a){var b={left:1,right:1,center:1,block:1},e=I(a),f;for(f in b)e(f);J(a)}});CKEDITOR.plugins.image2={stateShifter:function(a){function b(a,b){var c={};g?c.attributes={"class":g[1]}:c.styles={"text-align":"center"};c=f.createElement(a.activeEnterMode==CKEDITOR.ENTER_P?"p":"div",c);e(c,b);b.move(c);return c}function e(b,d){if(d.getParent()){var e=a.createRange();e.moveToPosition(d,CKEDITOR.POSITION_BEFORE_START);d.remove();c.insertElementIntoRange(b, +e)}else b.replace(d)}var f=a.document,g=a.config.image2_alignClasses,d=a.config.image2_captionedClass,c=a.editable(),h=["hasCaption","align","link"],i={align:function(c,d,e){var f=c.element;if(c.changed.align){if(!c.newData.hasCaption&&("center"==e&&(c.deflate(),c.element=b(a,f)),!c.changed.hasCaption&&"center"==d&&"center"!=e))c.deflate(),d=f.findOne("a,img"),d.replace(f),c.element=d}else"center"==e&&(c.changed.hasCaption&&!c.newData.hasCaption)&&(c.deflate(),c.element=b(a,f));!g&&f.is("figure")&& +("center"==e?f.setStyle("display","inline-block"):f.removeStyle("display"))},hasCaption:function(b,c,g){b.changed.hasCaption&&(c=b.element.is({img:1,a:1})?b.element:b.element.findOne("a,img"),b.deflate(),g?(g=CKEDITOR.dom.element.createFromHtml(K.output({captionedClass:d,captionPlaceholder:a.lang.image2.captionPlaceholder}),f),e(g,b.element),c.replace(g.findOne("img")),b.element=g):(c.replace(b.element),b.element=c))},link:function(b,c,d){if(b.changed.link){var e=b.element.is("img")?b.element:b.element.findOne("img"), +g=b.element.is("a")?b.element:b.element.findOne("a"),h=b.element.is("a")&&!d||b.element.is("img")&&d,i;h&&b.deflate();d?(c||(i=f.createElement("a",{attributes:{href:b.newData.link.url}}),i.replace(e),e.move(i)),d=CKEDITOR.plugins.link.getLinkAttributes(a,d),CKEDITOR.tools.isEmpty(d.set)||(i||g).setAttributes(d.set),d.removed.length&&(i||g).removeAttributes(d.removed)):(d=g.findOne("img"),d.replace(g),i=d);h&&(b.element=i)}}};return function(a){var b,c;a.changed={};for(c=0;c<h.length;c++)b=h[c],a.changed[b]= +a.oldData?a.oldData[b]!==a.newData[b]:!1;for(c=0;c<h.length;c++)b=h[c],i[b](a,a.oldData?a.oldData[b]:null,a.newData[b]);a.inflate()}},checkHasNaturalRatio:function(a){var b=a.$,a=this.getNatural(a);return Math.round(b.clientWidth/a.width*a.height)==b.clientHeight||Math.round(b.clientHeight/a.height*a.width)==b.clientWidth},getNatural:function(a){if(a.$.naturalWidth)a={width:a.$.naturalWidth,height:a.$.naturalHeight};else{var b=new Image;b.src=a.getAttribute("src");a={width:b.width,height:b.height}}return a}}})(); +CKEDITOR.config.image2_captionedClass="image"; \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/imagepaste/docs/install.html b/zup-painel/assets/scripts/ckeditor/plugins/imagepaste/docs/install.html new file mode 100644 index 0000000..ff3a9f8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/imagepaste/docs/install.html @@ -0,0 +1,66 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" + "http://www.w3.org/TR/html4/loose.dtd"> +<html lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +<title>Image paste plugin + + + + +

Image paste Plugin for CKEditor

+ +

Introduction

+

This is a plugin that automatically uploads to the server the images pasted from the clipboard with Firefox in CKEditor.

+ +

Author:

+

Alfonso Martínez de Lizarrondo

+ +

Version history:

+
    +
  1. 1.0: 28-September-2011. First public version.
  2. +
  3. 1.1: 7-October-2013. Compatibility with CKEditor 4. Sorry to everyone that has tried to use it before, but I didn't realize that it was broken all along as it's a simple fix that I did long ago in the commercial version.
    + At the same time, I'm removing the useless "webkit-fake-url" crap that Safari generates but that it can't be used for anything.
  4. +
+ +

Installation

+

1. Copying the files

+

Extract the contents of the zip in you plugins directory, so it ends up like + this
+ +

+
+ckeditor\
+	...
+	images\
+	lang\
+	plugins\
+		...
+		imagepaste\
+			plugin.js
+			docs\
+				install.html
+		...
+	skins\
+	themes\
+
+

2. Adding it to CKEditor

+

Now add the plugin in your config.js or custom js configuration +file: +config.extraPlugins='imagepaste'; +

+ +

3. Configuration

+

You have to configure the filebrowserImageUploadUrl entry as you might have already done to allow the user to upload images. You can get a simple script to use as a guide for your code in this post in my blog.

+ +

4. Use it

+

Using Firefox, paste an image into the body of CKEditor. That image will be uploaded to the server and it will use the correct URL instead of "data:".

+ + + +

Disclaimers

+

CKEditor is © CKSource.com

+ + diff --git a/zup-painel/assets/scripts/ckeditor/plugins/imagepaste/docs/styles.css b/zup-painel/assets/scripts/ckeditor/plugins/imagepaste/docs/styles.css new file mode 100644 index 0000000..0980a67 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/imagepaste/docs/styles.css @@ -0,0 +1,59 @@ +body { + font-family: Arial, Helvetica, sans-serif; + font-size: 90%; +} +h1 { + text-align:center; + font-size:180%; +} +h2 { + border-bottom:2px solid #CCC; + margin:1em 0 0.4em 0; +} +h3 { + margin-bottom:0.4em; +} +p { + margin:0 0 1em 1em; + text-align:justify; +} +ol { + margin:0 0 1.2em 1em; + padding:0; + list-style-type:none; +} +ol li { + margin:0.2em 0; +} +pre, code { + font-size:100%; + font-family:"Courier New", Courier, mono; + background-color: #CCCCCC; + border:1px solid #999; + padding:0.2em 1em; + margin: 0.4em 0; + display:block; + white-space: pre; + overflow: auto; +} +form { + margin:0 0 0 1em; +} +span.key { + color: #006600; +} +#install { + display:none +} +#languages ul { + display:inline; + list-style-type:none; + margin:0; + padding:0; +} +#languages li { + display:inline; + margin:0; + padding:0; + vertical-align:bottom; +} \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/imagepaste/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/imagepaste/plugin.js new file mode 100644 index 0000000..1865da4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/imagepaste/plugin.js @@ -0,0 +1,109 @@ +/* + * @file image paste plugin for CKEditor + Feature introduced in: https://bugzilla.mozilla.org/show_bug.cgi?id=490879 + doesn't include images inside HTML (paste from word): https://bugzilla.mozilla.org/show_bug.cgi?id=665341 + * Copyright (C) 2011-13 Alfonso Martínez de Lizarrondo + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * version 1.1.1: Added allowedContent settings in case the Advanced tab has been removed from the image dialog + */ + + // Handles image pasting in Firefox +CKEDITOR.plugins.add( 'imagepaste', +{ + init : function( editor ) + { + + // v 4.1 filters + if (editor.addFeature) + { + editor.addFeature( { + allowedContent: 'img[!src,id];' + } ); + } + + // Paste from clipboard: + editor.on( 'paste', function(e) { + var data = e.data, + html = (data.html || ( data.type && data.type=='html' && data.dataValue)); + if (!html) + return; + + // strip out webkit-fake-url as they are useless: + if (CKEDITOR.env.webkit && (html.indexOf("webkit-fake-url")>0) ) + { + alert("Sorry, the images pasted with Safari aren't usable"); + window.open("https://bugs.webkit.org/show_bug.cgi?id=49141"); + html = html.replace( //g, ""); + } + + // Replace data: images in Firefox and upload them + html = html.replace( //g, function( img ) + { + var data = img.match(/"data:image\/png;base64,(.*?)"/)[1]; + var id = CKEDITOR.tools.getNextId(); + + var url= editor.config.filebrowserImageUploadUrl; + if (url.indexOf("?") == -1) + url += "?"; + else + url += "&"; + url += 'CKEditor=' + editor.name + '&CKEditorFuncNum=2&langCode=' + editor.langCode; + + var xhr = new XMLHttpRequest(); + + xhr.open("POST", url); + xhr.onload = function() { + // Upon finish, get the url and update the file + var imageUrl = xhr.responseText.match(/2,\s*'(.*?)',/)[1]; + var theImage = editor.document.getById( id ); + theImage.data( 'cke-saved-src', imageUrl); + theImage.setAttribute( 'src', imageUrl); + theImage.removeAttribute( 'id' ); + } + + // Create the multipart data upload. Is it possible somehow to use FormData instead? + var BOUNDARY = "---------------------------1966284435497298061834782736"; + var rn = "\r\n"; + var req = "--" + BOUNDARY; + + req += rn + "Content-Disposition: form-data; name=\"upload\""; + + var bin = window.atob( data ); + // add timestamp? + req += "; filename=\"" + id + ".png\"" + rn + "Content-type: image/png"; + + req += rn + rn + bin + rn + "--" + BOUNDARY; + + req += "--"; + + xhr.setRequestHeader("Content-Type", "multipart/form-data; boundary=" + BOUNDARY); + xhr.sendAsBinary(req); + + return img.replace(/>/, ' id="' + id + '">') + + }); + + if (e.data.html) + e.data.html = html; + else + e.data.dataValue = html; + }); + + } //Init +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/indentblock/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/indentblock/plugin.js new file mode 100644 index 0000000..d34ec48 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/indentblock/plugin.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function f(b,c,a){if(!b.getCustomData("indent_processed")){var d=this.editor,j=this.isIndent;if(c){d=b.$.className.match(this.classNameRegex);a=0;d&&(d=d[1],a=CKEDITOR.tools.indexOf(c,d)+1);if(0>(a+=j?1:-1))return;a=Math.min(a,c.length);a=Math.max(a,0);b.$.className=CKEDITOR.tools.ltrim(b.$.className.replace(this.classNameRegex,""));0a)return;a=Math.max(a, +0);a=Math.ceil(a/g)*g;b.setStyle(c,a?a+(d.config.indentUnit||"px"):"");""===b.getAttribute("style")&&b.removeAttribute("style")}CKEDITOR.dom.element.setMarker(this.database,b,"indent_processed",1)}}function k(b,c){return"ltr"==(c||b.getComputedStyle("direction"))?"margin-left":"margin-right"}var h=CKEDITOR.dtd.$listItem,m=CKEDITOR.dtd.$list,i=CKEDITOR.TRISTATE_DISABLED,l=CKEDITOR.TRISTATE_OFF;CKEDITOR.plugins.add("indentblock",{requires:"indent",init:function(b){function c(){a.specificDefinition.apply(this, +arguments);this.allowedContent={"div h1 h2 h3 h4 h5 h6 ol p pre ul":{propertiesOnly:!0,styles:!d?"margin-left,margin-right":null,classes:d||null}};this.enterBr&&(this.allowedContent.div=!0);this.requiredContent=(this.enterBr?"div":"p")+(d?"("+d.join(",")+")":"{margin-left}");this.jobs={20:{refresh:function(a,b){var e=b.block||b.blockLimit;if(!e.is(h))var c=e.getAscendant(h),e=c&&b.contains(c)||e;e.is(h)&&(e=e.getParent());if(!this.enterBr&&!this.getContext(b))return i;if(d){var c=d,e=e.$.className.match(this.classNameRegex), +f=this.isIndent,c=e?f?e[1]!=c.slice(-1):true:f;return c?l:i}return this.isIndent?l:e?CKEDITOR[(parseInt(e.getStyle(k(e)),10)||0)<=0?"TRISTATE_DISABLED":"TRISTATE_OFF"]:i},exec:function(a){var b=a.getSelection(),b=b&&b.getRanges()[0],c;if(c=a.elementPath().contains(m))f.call(this,c,d);else{b=b.createIterator();a=a.config.enterMode;b.enforceRealBlocks=true;for(b.enlargeBr=a!=CKEDITOR.ENTER_BR;c=b.getNextParagraph(a==CKEDITOR.ENTER_P?"p":"div");)c.isReadOnly()||f.call(this,c,d)}return true}}}}var a= +CKEDITOR.plugins.indent,d=b.config.indentClasses;a.registerCommands(b,{indentblock:new c(b,"indentblock",!0),outdentblock:new c(b,"outdentblock")});CKEDITOR.tools.extend(c.prototype,a.specificDefinition.prototype,{context:{div:1,dl:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,ul:1,ol:1,p:1,pre:1,table:1},classNameRegex:d?RegExp("(?:^|\\s+)("+d.join("|")+")(?=$|\\s)"):null})}})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifyblock.png b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifyblock.png new file mode 100644 index 0000000..7209fd4 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifyblock.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifycenter.png b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifycenter.png new file mode 100644 index 0000000..365e320 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifycenter.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifyleft.png b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifyleft.png new file mode 100644 index 0000000..75308c1 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifyleft.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifyright.png b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifyright.png new file mode 100644 index 0000000..de7c3d4 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/hidpi/justifyright.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifyblock.png b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifyblock.png new file mode 100644 index 0000000..a507be1 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifyblock.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifycenter.png b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifycenter.png new file mode 100644 index 0000000..f758bc4 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifycenter.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifyleft.png b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifyleft.png new file mode 100644 index 0000000..542ddee Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifyleft.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifyright.png b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifyright.png new file mode 100644 index 0000000..71a983c Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/justify/icons/justifyright.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/af.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/af.js new file mode 100644 index 0000000..d8ef5eb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/af.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'af', { + block: 'Uitvul', + center: 'Sentreer', + left: 'Links oplyn', + right: 'Regs oplyn' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ar.js new file mode 100644 index 0000000..7151c36 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ar.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ar', { + block: 'ضبط', + center: 'توسيط', + left: 'محاذاة إلى اليسار', + right: 'محاذاة إلى اليمين' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/bg.js new file mode 100644 index 0000000..a8c46dc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/bg.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'bg', { + block: 'Двустранно подравняване', + center: 'Център', + left: 'Подравни в ляво', + right: 'Подравни в дясно' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/bn.js new file mode 100644 index 0000000..67c1a11 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/bn.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'bn', { + block: 'ব্লক জাস্টিফাই', + center: 'মাঝ বরাবর ঘেষা', + left: 'বা দিকে ঘেঁষা', + right: 'ডান দিকে ঘেঁষা' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/bs.js new file mode 100644 index 0000000..e555aac --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/bs.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'bs', { + block: 'Puno poravnanje', + center: 'Centralno poravnanje', + left: 'Lijevo poravnanje', + right: 'Desno poravnanje' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ca.js new file mode 100644 index 0000000..6b31412 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ca.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ca', { + block: 'Justificat', + center: 'Centrat', + left: 'Alinea a l\'esquerra', + right: 'Alinea a la dreta' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/cs.js new file mode 100644 index 0000000..ebc891e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/cs.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'cs', { + block: 'Zarovnat do bloku', + center: 'Zarovnat na střed', + left: 'Zarovnat vlevo', + right: 'Zarovnat vpravo' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/cy.js new file mode 100644 index 0000000..7717054 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/cy.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'cy', { + block: 'Unioni', + center: 'Alinio i\'r Canol', + left: 'Alinio i\'r Chwith', + right: 'Alinio i\'r Dde' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/da.js new file mode 100644 index 0000000..79401cc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/da.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'da', { + block: 'Lige margener', + center: 'Centreret', + left: 'Venstrestillet', + right: 'Højrestillet' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/de.js new file mode 100644 index 0000000..728f770 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/de.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'de', { + block: 'Blocksatz', + center: 'Zentriert', + left: 'Linksbündig', + right: 'Rechtsbündig' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/el.js new file mode 100644 index 0000000..772bdfb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/el.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'el', { + block: 'Πλήρης Στοίχιση', + center: 'Στο Κέντρο', + left: 'Στοίχιση Αριστερά', + right: 'Στοίχιση Δεξιά' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en-au.js new file mode 100644 index 0000000..ffe19fc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en-au.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'en-au', { + block: 'Justify', + center: 'Centre', + left: 'Align Left', + right: 'Align Right' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en-ca.js new file mode 100644 index 0000000..cf0767b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en-ca.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'en-ca', { + block: 'Justify', + center: 'Centre', + left: 'Align Left', + right: 'Align Right' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en-gb.js new file mode 100644 index 0000000..9f7365a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en-gb.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'en-gb', { + block: 'Justify', + center: 'Centre', + left: 'Align Left', + right: 'Align Right' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en.js new file mode 100644 index 0000000..0801d86 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/en.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'en', { + block: 'Justify', + center: 'Center', + left: 'Align Left', + right: 'Align Right' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/eo.js new file mode 100644 index 0000000..e1f557c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/eo.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'eo', { + block: 'Ĝisrandigi Ambaŭflanke', + center: 'Centrigi', + left: 'Ĝisrandigi maldekstren', + right: 'Ĝisrandigi dekstren' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/es.js new file mode 100644 index 0000000..da46ea5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/es.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'es', { + block: 'Justificado', + center: 'Centrar', + left: 'Alinear a Izquierda', + right: 'Alinear a Derecha' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/et.js new file mode 100644 index 0000000..0543e6e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/et.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'et', { + block: 'Rööpjoondus', + center: 'Keskjoondus', + left: 'Vasakjoondus', + right: 'Paremjoondus' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/eu.js new file mode 100644 index 0000000..7d1620b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/eu.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'eu', { + block: 'Justifikatu', + center: 'Lerrokatu Erdian', + left: 'Lerrokatu Ezkerrean', + right: 'Lerrokatu Eskuman' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fa.js new file mode 100644 index 0000000..0bb37be --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fa.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'fa', { + block: 'بلوک چین', + center: 'میان چین', + left: 'چپ چین', + right: 'راست چین' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fi.js new file mode 100644 index 0000000..c5d1a5c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fi.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'fi', { + block: 'Tasaa molemmat reunat', + center: 'Keskitä', + left: 'Tasaa vasemmat reunat', + right: 'Tasaa oikeat reunat' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fo.js new file mode 100644 index 0000000..a7266e3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fo.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'fo', { + block: 'Javnir tekstkantar', + center: 'Miðsett', + left: 'Vinstrasett', + right: 'Høgrasett' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fr-ca.js new file mode 100644 index 0000000..dcb2f41 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fr-ca.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'fr-ca', { + block: 'Justifié', + center: 'Centré', + left: 'Aligner à gauche', + right: 'Aligner à Droite' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fr.js new file mode 100644 index 0000000..a2671c3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/fr.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'fr', { + block: 'Justifier', + center: 'Centrer', + left: 'Aligner à gauche', + right: 'Aligner à droite' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/gl.js new file mode 100644 index 0000000..acd4d23 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/gl.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'gl', { + block: 'Xustificado', + center: 'Centrado', + left: 'Aliñar á esquerda', + right: 'Aliñar á dereita' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/gu.js new file mode 100644 index 0000000..349a27e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/gu.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'gu', { + block: 'બ્લૉક, અંતરાય જસ્ટિફાઇ', + center: 'સંકેંદ્રણ/સેંટરિંગ', + left: 'ડાબી બાજુએ/બાજુ તરફ', + right: 'જમણી બાજુએ/બાજુ તરફ' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/he.js new file mode 100644 index 0000000..499b33a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/he.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'he', { + block: 'יישור לשוליים', + center: 'מרכוז', + left: 'יישור לשמאל', + right: 'יישור לימין' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/hi.js new file mode 100644 index 0000000..2a12c3c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/hi.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'hi', { + block: 'ब्लॉक जस्टीफ़ाई', + center: 'बीच में', + left: 'बायीं तरफ', + right: 'दायीं तरफ' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/hr.js new file mode 100644 index 0000000..a76b6e3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/hr.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'hr', { + block: 'Blok poravnanje', + center: 'Središnje poravnanje', + left: 'Lijevo poravnanje', + right: 'Desno poravnanje' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/hu.js new file mode 100644 index 0000000..ca4b760 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/hu.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'hu', { + block: 'Sorkizárt', + center: 'Középre', + left: 'Balra', + right: 'Jobbra' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/id.js new file mode 100644 index 0000000..fb8bed9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/id.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'id', { + block: 'Rata kiri-kanan', + center: 'Pusat', + left: 'Align Left', // MISSING + right: 'Align Right' // MISSING +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/is.js new file mode 100644 index 0000000..e755159 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/is.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'is', { + block: 'Jafna báðum megin', + center: 'Miðja texta', + left: 'Vinstrijöfnun', + right: 'Hægrijöfnun' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/it.js new file mode 100644 index 0000000..5e2355c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/it.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'it', { + block: 'Giustifica', + center: 'Centra', + left: 'Allinea a sinistra', + right: 'Allinea a destra' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ja.js new file mode 100644 index 0000000..f37e748 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ja.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ja', { + block: '両端揃え', + center: '中央揃え', + left: '左揃え', + right: '右揃え' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ka.js new file mode 100644 index 0000000..ad09385 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ka.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ka', { + block: 'გადასწორება', + center: 'შუაში სწორება', + left: 'მარცხნივ სწორება', + right: 'მარჯვნივ სწორება' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/km.js new file mode 100644 index 0000000..460f9c7 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/km.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'km', { + block: 'តម្រឹម​ពេញ', + center: 'កណ្ដាល', + left: 'តម្រឹម​ឆ្វេង', + right: 'តម្រឹម​ស្ដាំ' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ko.js new file mode 100644 index 0000000..0a0810a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ko.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ko', { + block: '양쪽 맞춤', + center: '가운데 정렬', + left: '왼쪽 정렬', + right: '오른쪽 정렬' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ku.js new file mode 100644 index 0000000..03865a6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ku.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ku', { + block: 'هاوستوونی', + center: 'ناوەڕاست', + left: 'بەهێڵ کردنی چەپ', + right: 'بەهێڵ کردنی ڕاست' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/lt.js new file mode 100644 index 0000000..6b43a88 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/lt.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'lt', { + block: 'Lygiuoti abi puses', + center: 'Centruoti', + left: 'Lygiuoti kairę', + right: 'Lygiuoti dešinę' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/lv.js new file mode 100644 index 0000000..763e5a3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/lv.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'lv', { + block: 'Izlīdzināt malas', + center: 'Izlīdzināt pret centru', + left: 'Izlīdzināt pa kreisi', + right: 'Izlīdzināt pa labi' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/mk.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/mk.js new file mode 100644 index 0000000..a0f374c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/mk.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'mk', { + block: 'Justify', // MISSING + center: 'Center', // MISSING + left: 'Align Left', // MISSING + right: 'Align Right' // MISSING +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/mn.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/mn.js new file mode 100644 index 0000000..3e5909b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/mn.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'mn', { + block: 'Тэгшлэх', + center: 'Голлуулах', + left: 'Зүүн талд тулгах', + right: 'Баруун талд тулгах' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ms.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ms.js new file mode 100644 index 0000000..951b216 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ms.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ms', { + block: 'Jajaran Blok', + center: 'Jajaran Tengah', + left: 'Jajaran Kiri', + right: 'Jajaran Kanan' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/nb.js new file mode 100644 index 0000000..59448a6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/nb.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'nb', { + block: 'Blokkjuster', + center: 'Midtstill', + left: 'Venstrejuster', + right: 'Høyrejuster' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/nl.js new file mode 100644 index 0000000..5d1d3a0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/nl.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'nl', { + block: 'Uitvullen', + center: 'Centreren', + left: 'Links uitlijnen', + right: 'Rechts uitlijnen' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/no.js new file mode 100644 index 0000000..2b940cf --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/no.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'no', { + block: 'Blokkjuster', + center: 'Midtstill', + left: 'Venstrejuster', + right: 'Høyrejuster' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/pl.js new file mode 100644 index 0000000..14fb39e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/pl.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'pl', { + block: 'Wyjustuj', + center: 'Wyśrodkuj', + left: 'Wyrównaj do lewej', + right: 'Wyrównaj do prawej' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/pt-br.js new file mode 100644 index 0000000..0239088 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/pt-br.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'pt-br', { + block: 'Justificado', + center: 'Centralizar', + left: 'Alinhar Esquerda', + right: 'Alinhar Direita' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/pt.js new file mode 100644 index 0000000..f5f5e1f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/pt.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'pt', { + block: 'Justificado', + center: 'Alinhar ao Centro', + left: 'Alinhar à esquerda', + right: 'Alinhar à direita' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ro.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ro.js new file mode 100644 index 0000000..7da32cc --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ro.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ro', { + block: 'Aliniere în bloc (Block Justify)', + center: 'Aliniere centrală', + left: 'Aliniere la stânga', + right: 'Aliniere la dreapta' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ru.js new file mode 100644 index 0000000..0e70b0c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ru.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ru', { + block: 'По ширине', + center: 'По центру', + left: 'По левому краю', + right: 'По правому краю' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/si.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/si.js new file mode 100644 index 0000000..99127c6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/si.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'si', { + block: 'Justify', // MISSING + center: 'මධ්‍ය', + left: 'Align Left', // MISSING + right: 'Align Right' // MISSING +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sk.js new file mode 100644 index 0000000..6f09cce --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sk.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'sk', { + block: 'Zarovnať do bloku', + center: 'Zarovnať na stred', + left: 'Zarovnať vľavo', + right: 'Zarovnať vpravo' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sl.js new file mode 100644 index 0000000..4e7f5bb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sl.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'sl', { + block: 'Obojestranska poravnava', + center: 'Sredinska poravnava', + left: 'Leva poravnava', + right: 'Desna poravnava' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sq.js new file mode 100644 index 0000000..6a9ba27 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sq.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'sq', { + block: 'Zgjero', + center: 'Qendër', + left: 'Rreshto majtas', + right: 'Rreshto Djathtas' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sr-latn.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sr-latn.js new file mode 100644 index 0000000..2d69cf5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sr-latn.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'sr-latn', { + block: 'Obostrano ravnanje', + center: 'Centriran tekst', + left: 'Levo ravnanje', + right: 'Desno ravnanje' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sr.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sr.js new file mode 100644 index 0000000..9dd3f0f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sr.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'sr', { + block: 'Обострано равнање', + center: 'Центриран текст', + left: 'Лево равнање', + right: 'Десно равнање' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sv.js new file mode 100644 index 0000000..086dfc3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/sv.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'sv', { + block: 'Justera till marginaler', + center: 'Centrera', + left: 'Vänsterjustera', + right: 'Högerjustera' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/th.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/th.js new file mode 100644 index 0000000..b1d13b8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/th.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'th', { + block: 'จัดพอดีหน้ากระดาษ', + center: 'จัดกึ่งกลาง', + left: 'จัดชิดซ้าย', + right: 'จัดชิดขวา' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/tr.js new file mode 100644 index 0000000..4138724 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/tr.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'tr', { + block: 'İki Kenara Yaslanmış', + center: 'Ortalanmış', + left: 'Sola Dayalı', + right: 'Sağa Dayalı' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/tt.js new file mode 100644 index 0000000..00ec2f6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/tt.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'tt', { + block: 'Киңлеккә карап тигезләү', + center: 'Үзәккә тигезләү', + left: 'Сул як кырыйдан тигезләү', + right: 'Уң як кырыйдан тигезләү' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ug.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ug.js new file mode 100644 index 0000000..14f586a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/ug.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'ug', { + block: 'ئىككى تەرەپتىن توغرىلا', + center: 'ئوتتۇرىغا توغرىلا', + left: 'سولغا توغرىلا', + right: 'ئوڭغا توغرىلا' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/uk.js new file mode 100644 index 0000000..321de22 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/uk.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'uk', { + block: 'По ширині', + center: 'По центру', + left: 'По лівому краю', + right: 'По правому краю' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/vi.js new file mode 100644 index 0000000..b2557ff --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/vi.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'vi', { + block: 'Canh đều', + center: 'Canh giữa', + left: 'Canh trái', + right: 'Canh phải' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/zh-cn.js new file mode 100644 index 0000000..de39da8 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/zh-cn.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'zh-cn', { + block: '两端对齐', + center: '居中', + left: '左对齐', + right: '右对齐' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/zh.js new file mode 100644 index 0000000..ee99b71 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/lang/zh.js @@ -0,0 +1,10 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'justify', 'zh', { + block: '左右對齊', + center: '置中', + left: '靠左對齊', + right: '靠右對齊' +} ); diff --git a/zup-painel/assets/scripts/ckeditor/plugins/justify/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/justify/plugin.js new file mode 100644 index 0000000..c7cb4d0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/justify/plugin.js @@ -0,0 +1,245 @@ +/** + * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +/** + * @fileOverview Justify commands. + */ + +( function() { + function getAlignment( element, useComputedState ) { + useComputedState = useComputedState === undefined || useComputedState; + + var align; + if ( useComputedState ) + align = element.getComputedStyle( 'text-align' ); + else { + while ( !element.hasAttribute || !( element.hasAttribute( 'align' ) || element.getStyle( 'text-align' ) ) ) { + var parent = element.getParent(); + if ( !parent ) + break; + element = parent; + } + align = element.getStyle( 'text-align' ) || element.getAttribute( 'align' ) || ''; + } + + // Sometimes computed values doesn't tell. + align && ( align = align.replace( /(?:-(?:moz|webkit)-)?(?:start|auto)/i, '' ) ); + + !align && useComputedState && ( align = element.getComputedStyle( 'direction' ) == 'rtl' ? 'right' : 'left' ); + + return align; + } + + function justifyCommand( editor, name, value ) { + this.editor = editor; + this.name = name; + this.value = value; + this.context = 'p'; + + var classes = editor.config.justifyClasses, + blockTag = editor.config.enterMode == CKEDITOR.ENTER_P ? 'p' : 'div'; + + if ( classes ) { + switch ( value ) { + case 'left': + this.cssClassName = classes[ 0 ]; + break; + case 'center': + this.cssClassName = classes[ 1 ]; + break; + case 'right': + this.cssClassName = classes[ 2 ]; + break; + case 'justify': + this.cssClassName = classes[ 3 ]; + break; + } + + this.cssClassRegex = new RegExp( '(?:^|\\s+)(?:' + classes.join( '|' ) + ')(?=$|\\s)' ); + this.requiredContent = blockTag + '(' + this.cssClassName + ')'; + } + else { + this.requiredContent = blockTag + '{text-align}'; + } + + this.allowedContent = { + 'caption div h1 h2 h3 h4 h5 h6 p pre td th li': { + // Do not add elements, but only text-align style if element is validated by other rule. + propertiesOnly: true, + styles: this.cssClassName ? null : 'text-align', + classes: this.cssClassName || null + } + }; + + // In enter mode BR we need to allow here for div, because when non other + // feature allows div justify is the only plugin that uses it. + if ( editor.config.enterMode == CKEDITOR.ENTER_BR ) + this.allowedContent.div = true; + } + + function onDirChanged( e ) { + var editor = e.editor; + + var range = editor.createRange(); + range.setStartBefore( e.data.node ); + range.setEndAfter( e.data.node ); + + var walker = new CKEDITOR.dom.walker( range ), + node; + + while ( ( node = walker.next() ) ) { + if ( node.type == CKEDITOR.NODE_ELEMENT ) { + // A child with the defined dir is to be ignored. + if ( !node.equals( e.data.node ) && node.getDirection() ) { + range.setStartAfter( node ); + walker = new CKEDITOR.dom.walker( range ); + continue; + } + + // Switch the alignment. + var classes = editor.config.justifyClasses; + if ( classes ) { + // The left align class. + if ( node.hasClass( classes[ 0 ] ) ) { + node.removeClass( classes[ 0 ] ); + node.addClass( classes[ 2 ] ); + } + // The right align class. + else if ( node.hasClass( classes[ 2 ] ) ) { + node.removeClass( classes[ 2 ] ); + node.addClass( classes[ 0 ] ); + } + } + + // Always switch CSS margins. + var style = 'text-align'; + var align = node.getStyle( style ); + + if ( align == 'left' ) + node.setStyle( style, 'right' ); + else if ( align == 'right' ) + node.setStyle( style, 'left' ); + } + } + } + + justifyCommand.prototype = { + exec: function( editor ) { + var selection = editor.getSelection(), + enterMode = editor.config.enterMode; + + if ( !selection ) + return; + + var bookmarks = selection.createBookmarks(), + ranges = selection.getRanges(); + + var cssClassName = this.cssClassName, + iterator, block; + + var useComputedState = editor.config.useComputedState; + useComputedState = useComputedState === undefined || useComputedState; + + for ( var i = ranges.length - 1; i >= 0; i-- ) { + iterator = ranges[ i ].createIterator(); + iterator.enlargeBr = enterMode != CKEDITOR.ENTER_BR; + + while ( ( block = iterator.getNextParagraph( enterMode == CKEDITOR.ENTER_P ? 'p' : 'div' ) ) ) { + if ( block.isReadOnly() ) + continue; + + block.removeAttribute( 'align' ); + block.removeStyle( 'text-align' ); + + // Remove any of the alignment classes from the className. + var className = cssClassName && ( block.$.className = CKEDITOR.tools.ltrim( block.$.className.replace( this.cssClassRegex, '' ) ) ); + + var apply = ( this.state == CKEDITOR.TRISTATE_OFF ) && ( !useComputedState || ( getAlignment( block, true ) != this.value ) ); + + if ( cssClassName ) { + // Append the desired class name. + if ( apply ) + block.addClass( cssClassName ); + else if ( !className ) + block.removeAttribute( 'class' ); + } else if ( apply ) { + block.setStyle( 'text-align', this.value ); + } + } + + } + + editor.focus(); + editor.forceNextSelectionCheck(); + selection.selectBookmarks( bookmarks ); + }, + + refresh: function( editor, path ) { + var firstBlock = path.block || path.blockLimit; + + this.setState( firstBlock.getName() != 'body' && getAlignment( firstBlock, this.editor.config.useComputedState ) == this.value ? CKEDITOR.TRISTATE_ON : CKEDITOR.TRISTATE_OFF ); + } + }; + + CKEDITOR.plugins.add( 'justify', { + // jscs:disable maximumLineLength + lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE% + // jscs:enable maximumLineLength + icons: 'justifyblock,justifycenter,justifyleft,justifyright', // %REMOVE_LINE_CORE% + hidpi: true, // %REMOVE_LINE_CORE% + init: function( editor ) { + if ( editor.blockless ) + return; + + var left = new justifyCommand( editor, 'justifyleft', 'left' ), + center = new justifyCommand( editor, 'justifycenter', 'center' ), + right = new justifyCommand( editor, 'justifyright', 'right' ), + justify = new justifyCommand( editor, 'justifyblock', 'justify' ); + + editor.addCommand( 'justifyleft', left ); + editor.addCommand( 'justifycenter', center ); + editor.addCommand( 'justifyright', right ); + editor.addCommand( 'justifyblock', justify ); + + if ( editor.ui.addButton ) { + editor.ui.addButton( 'JustifyLeft', { + label: editor.lang.justify.left, + command: 'justifyleft', + toolbar: 'align,10' + } ); + editor.ui.addButton( 'JustifyCenter', { + label: editor.lang.justify.center, + command: 'justifycenter', + toolbar: 'align,20' + } ); + editor.ui.addButton( 'JustifyRight', { + label: editor.lang.justify.right, + command: 'justifyright', + toolbar: 'align,30' + } ); + editor.ui.addButton( 'JustifyBlock', { + label: editor.lang.justify.block, + command: 'justifyblock', + toolbar: 'align,40' + } ); + } + + editor.on( 'dirChanged', onDirChanged ); + } + } ); +} )(); + +/** + * List of classes to use for aligning the contents. If it's `null`, no classes will be used + * and instead the corresponding CSS values will be used. + * + * The array should contain 4 members, in the following order: left, center, right, justify. + * + * // Use the classes 'AlignLeft', 'AlignCenter', 'AlignRight', 'AlignJustify' + * config.justifyClasses = [ 'AlignLeft', 'AlignCenter', 'AlignRight', 'AlignJustify' ]; + * + * @cfg {Array} [justifyClasses=null] + * @member CKEDITOR.config + */ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/icons/hidpi/language.png b/zup-painel/assets/scripts/ckeditor/plugins/language/icons/hidpi/language.png new file mode 100644 index 0000000..3908a6a Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/language/icons/hidpi/language.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/icons/language.png b/zup-painel/assets/scripts/ckeditor/plugins/language/icons/language.png new file mode 100644 index 0000000..eb680d4 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/language/icons/language.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ar.js new file mode 100644 index 0000000..2c6de38 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ar.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ar",{button:"حدد اللغة",remove:"حذف اللغة"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/bg.js new file mode 100644 index 0000000..829fa97 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/bg.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","bg",{button:"Задай език",remove:"Премахни език"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ca.js new file mode 100644 index 0000000..0786ff4 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ca",{button:"Definir l'idioma",remove:"Eliminar idioma"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/cs.js new file mode 100644 index 0000000..f70b05d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","cs",{button:"Nastavit jazyk",remove:"Odstranit jazyk"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/cy.js new file mode 100644 index 0000000..7cb4494 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/cy.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","cy",{button:"Gosod iaith",remove:"Tynnu iaith"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/da.js new file mode 100644 index 0000000..d2c9032 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","da",{button:"Vælg sprog",remove:"Fjern sprog"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/de.js new file mode 100644 index 0000000..3b663cd --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/de.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","de",{button:"Sprache festlegen",remove:"Sprache entfernen"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/el.js new file mode 100644 index 0000000..b0cf73d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/el.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","el",{button:"Θέση γλώσσας",remove:"Αφαίρεση γλώσσας"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/en-gb.js new file mode 100644 index 0000000..1c86f5d --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/en-gb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","en-gb",{button:"Set language",remove:"Remove language"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/en.js new file mode 100644 index 0000000..2278e8b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","en",{button:"Set language",remove:"Remove language"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/eo.js new file mode 100644 index 0000000..f79af48 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/eo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","eo",{button:"Instali lingvon",remove:"Forigi lingvon"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/es.js new file mode 100644 index 0000000..af1dc12 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/es.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","es",{button:"Fijar lenguaje",remove:"Quitar lenguaje"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fa.js new file mode 100644 index 0000000..0b89722 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fa.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","fa",{button:"تعیین زبان",remove:"حذف زبان"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fi.js new file mode 100644 index 0000000..e8f96b6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","fi",{button:"Aseta kieli",remove:"Poista kieli"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fo.js new file mode 100644 index 0000000..6907787 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","fo",{button:"Velja tungumál",remove:"Remove language"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fr.js new file mode 100644 index 0000000..4fcb7c6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/fr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","fr",{button:"Définir la langue",remove:"Supprimer la langue"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/gl.js new file mode 100644 index 0000000..1f255e9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","gl",{button:"Estabelezer o idioma",remove:"Retirar o idioma"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/he.js new file mode 100644 index 0000000..ecfcf77 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/he.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","he",{button:"צור שפה",remove:"הסר שפה"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/hr.js new file mode 100644 index 0000000..1bc0437 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/hr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","hr",{button:"Namjesti jezik",remove:"Makni jezik"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/hu.js new file mode 100644 index 0000000..041ed21 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/hu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","hu",{button:"Nyelv beállítása",remove:"Nyelv eltávolítása"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/it.js new file mode 100644 index 0000000..aa3c611 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/it.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","it",{button:"Imposta lingua",remove:"Rimuovi lingua"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ja.js new file mode 100644 index 0000000..2435880 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ja.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ja",{button:"言語を設定",remove:"言語を削除"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/km.js new file mode 100644 index 0000000..03b4ed3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/km.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","km",{button:"កំណត់​ភាសា",remove:"លុប​ភាសា"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ko.js new file mode 100644 index 0000000..1441ba3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ko",{button:"언어 설정",remove:"언어 설정 지우기"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ku.js new file mode 100644 index 0000000..4dfbb8b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ku.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ku",{button:"جێگیرکردنی زمان",remove:"لابردنی زمان"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/nb.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/nb.js new file mode 100644 index 0000000..9cf312c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","nb",{button:"Sett språk",remove:"Fjern språk"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/nl.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/nl.js new file mode 100644 index 0000000..6699da3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","nl",{button:"Taal instellen",remove:"Taal verwijderen"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/no.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/no.js new file mode 100644 index 0000000..a48beb0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/no.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","no",{button:"Sett språk",remove:"Fjern språk"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/pl.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/pl.js new file mode 100644 index 0000000..6887d23 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","pl",{button:"Ustaw język",remove:"Usuń język"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/pt-br.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/pt-br.js new file mode 100644 index 0000000..ecb27b0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/pt-br.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","pt-br",{button:"Configure o Idioma",remove:"Remover Idioma"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/pt.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/pt.js new file mode 100644 index 0000000..e2dda5e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/pt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","pt",{button:"Definir Idioma",remove:"Remover idioma"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ru.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ru.js new file mode 100644 index 0000000..99b81af --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ru",{button:"Установка языка",remove:"Удалить язык"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sk.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sk.js new file mode 100644 index 0000000..3fa9766 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","sk",{button:"Nastaviť jazyk",remove:"Odstrániť jazyk"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sl.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sl.js new file mode 100644 index 0000000..382dea1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","sl",{button:"Nastavi jezik",remove:"Odstrani jezik"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sq.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sq.js new file mode 100644 index 0000000..7d12ed2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sq.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","sq",{button:"Përzgjidhni gjuhën",remove:"Largoni gjuhën"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sv.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sv.js new file mode 100644 index 0000000..f9f7455 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/sv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","sv",{button:"Sätt språk",remove:"Ta bort språk"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/tr.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/tr.js new file mode 100644 index 0000000..c1ba86b --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","tr",{button:"Dili seç",remove:"Dili kaldır"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/tt.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/tt.js new file mode 100644 index 0000000..8a742e6 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/tt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","tt",{button:"Тел сайлау",remove:"Телне бетерү"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/uk.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/uk.js new file mode 100644 index 0000000..6fc4153 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/uk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","uk",{button:"Установити мову",remove:"Вилучити мову"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/vi.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/vi.js new file mode 100644 index 0000000..1d2d576 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/vi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","vi",{button:"Thiết lập ngôn ngữ",remove:"Loại bỏ ngôn ngữ"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/zh-cn.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/zh-cn.js new file mode 100644 index 0000000..1acfd0a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","zh-cn",{button:"设置语言",remove:"移除语言"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/lang/zh.js b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/zh.js new file mode 100644 index 0000000..49e6192 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","zh",{button:"設定語言",remove:"移除語言"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/language/plugin.js b/zup-painel/assets/scripts/ckeditor/plugins/language/plugin.js new file mode 100644 index 0000000..77d2b40 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/language/plugin.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("language",{requires:"menubutton",lang:"ar,ca,cs,cy,da,de,el,en,en-gb,eo,es,fa,fi,fr,gl,he,hr,hu,it,ja,km,ku,nb,nl,no,pl,pt,pt-br,ru,sk,sl,sq,sv,tr,tt,uk,vi,zh,zh-cn",icons:"language",hidpi:!0,init:function(a){var b=a.config.language_list||["ar:Arabic:rtl","fr:French","es:Spanish"],c=this,d=a.lang.language,e={},g,h,i,f;a.addCommand("language",{allowedContent:"span[!lang,!dir]",requiredContent:"span[lang,dir]",contextSensitive:!0,exec:function(a,b){var c=e["language_"+ +b];if(c)a[c.style.checkActive(a.elementPath(),a)?"removeStyle":"applyStyle"](c.style)},refresh:function(a){this.setState(c.getCurrentLangElement(a)?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF)}});for(f=0;f=this.rect.right||a<=this.rect.top||a>=this.rect.bottom)&&this.hideVisible();(b<=0||b>=this.winTopPane.width||a<=0||a>=this.winTopPane.height)&&this.hideVisible()},this);b.attachListener(a,"resize",c);b.attachListener(a,"mode",g);a.on("destroy",g);this.lineTpl=(new CKEDITOR.template(p)).output({lineStyle:CKEDITOR.tools.writeCssText(CKEDITOR.tools.extend({},q,this.lineStyle,!0)),tipLeftStyle:CKEDITOR.tools.writeCssText(CKEDITOR.tools.extend({},n,{left:"0px", +"border-left-color":"red","border-width":"6px 0 6px 6px"},this.tipCss,this.tipLeftStyle,!0)),tipRightStyle:CKEDITOR.tools.writeCssText(CKEDITOR.tools.extend({},n,{right:"0px","border-right-color":"red","border-width":"6px 6px 6px 0"},this.tipCss,this.tipRightStyle,!0))})}function j(a){return a&&a.type==CKEDITOR.NODE_ELEMENT&&!(o[a.getComputedStyle("float")]||o[a.getAttribute("align")])&&!r[a.getComputedStyle("position")]}CKEDITOR.plugins.add("lineutils");CKEDITOR.LINEUTILS_BEFORE=1;CKEDITOR.LINEUTILS_AFTER= +2;CKEDITOR.LINEUTILS_INSIDE=4;k.prototype={start:function(a){var d=this,b=this.editor,c=this.doc,e,g,f,h,i=CKEDITOR.tools.eventsBuffer(50,function(){if(!(b.readOnly||"wysiwyg"!=b.mode))if(d.relations={},(g=c.$.elementFromPoint(f,h))&&g.nodeType)e=new CKEDITOR.dom.element(g),d.traverseSearch(e),isNaN(f+h)||d.pixelSearch(e,f,h),a&&a(d.relations,f,h)});this.listener=this.editable.attachListener(this.target,"mousemove",function(a){f=a.data.$.clientX;h=a.data.$.clientY;i.input()});this.editable.attachListener(this.inline? +this.editable:this.frame,"mouseout",function(){i.reset()})},stop:function(){this.listener&&this.listener.removeListener()},getRange:function(){var a={};a[CKEDITOR.LINEUTILS_BEFORE]=CKEDITOR.POSITION_BEFORE_START;a[CKEDITOR.LINEUTILS_AFTER]=CKEDITOR.POSITION_AFTER_END;a[CKEDITOR.LINEUTILS_INSIDE]=CKEDITOR.POSITION_AFTER_START;return function(d){var b=this.editor.createRange();b.moveToPosition(this.relations[d.uid].element,a[d.type]);return b}}(),store:function(){function a(a,b,c){var e=a.getUniqueId(); +e in c?c[e].type|=b:c[e]={element:a,type:b}}return function(d,b){var c;if(b&CKEDITOR.LINEUTILS_AFTER&&j(c=d.getNext())&&c.isVisible())a(c,CKEDITOR.LINEUTILS_BEFORE,this.relations),b^=CKEDITOR.LINEUTILS_AFTER;if(b&CKEDITOR.LINEUTILS_INSIDE&&j(c=d.getFirst())&&c.isVisible())a(c,CKEDITOR.LINEUTILS_BEFORE,this.relations),b^=CKEDITOR.LINEUTILS_INSIDE;a(d,b,this.relations)}}(),traverseSearch:function(a){var d,b,c;do if(c=a.$["data-cke-expando"],!(c&&c in this.relations)){if(a.equals(this.editable))break; +if(j(a))for(d in this.lookups)(b=this.lookups[d](a))&&this.store(a,b)}while(!(a&&a.type==CKEDITOR.NODE_ELEMENT&&"true"==a.getAttribute("contenteditable"))&&(a=a.getParent()))},pixelSearch:function(){function a(a,c,e,g,f){for(var h=0,i;f(e);){e+=g;if(25==++h)break;if(i=this.doc.$.elementFromPoint(c,e))if(i==a)h=0;else if(d(a,i)&&(h=0,j(i=new CKEDITOR.dom.element(i))))return i}}var d=CKEDITOR.env.ie||CKEDITOR.env.webkit?function(a,c){return a.contains(c)}:function(a,c){return!!(a.compareDocumentPosition(c)& +16)};return function(b,c,d){var g=this.win.getViewPaneSize().height,f=a.call(this,b.$,c,d,-1,function(a){return 0 +this.rect.bottom)return!1;if(this.inline)e.left=b.elementRect.left-this.rect.relativeX;else if(0CKEDITOR.env.version&&(a["class"]="cke_anchor"),a=new CKEDITOR.style({element:"a",attributes:a}),a.type=CKEDITOR.STYLE_INLINE,c.applyStyle(a))}},onHide:function(){delete this._.selectedElement},onShow:function(){var a=c.getSelection(),b=a.getSelectedElement(),d=b&&b.data("cke-realelement"),e=d?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,b):CKEDITOR.plugins.link.getSelectedLink(c); +e&&(this._.selectedElement=e,this.setValueOf("info","txtName",e.data("cke-saved-name")||""),!d&&a.selectElement(e),b&&(this._.selectedElement=b));this.getContentElement("info","txtName").focus()},contents:[{id:"info",label:c.lang.link.anchor.title,accessKey:"I",elements:[{type:"text",id:"txtName",label:c.lang.link.anchor.name,required:!0,validate:function(){return!this.getValue()?(alert(c.lang.link.anchor.errorName),!1):!0}}]}]}}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/link/dialogs/link.js b/zup-painel/assets/scripts/ckeditor/plugins/link/dialogs/link.js new file mode 100644 index 0000000..3ee3209 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/link/dialogs/link.js @@ -0,0 +1,26 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.dialog.add("link",function(g){var l=CKEDITOR.plugins.link,m=function(){var a=this.getDialog(),b=a.getContentElement("target","popupFeatures"),a=a.getContentElement("target","linkTargetName"),k=this.getValue();if(b&&a)switch(b=b.getElement(),b.hide(),a.setValue(""),k){case "frame":a.setLabel(g.lang.link.targetFrameName);a.getElement().show();break;case "popup":b.show();a.setLabel(g.lang.link.targetPopupName);a.getElement().show();break;default:a.setValue(k),a.getElement().hide()}}, +f=function(a){a.target&&this.setValue(a.target[this.id]||"")},h=function(a){a.advanced&&this.setValue(a.advanced[this.id]||"")},i=function(a){a.target||(a.target={});a.target[this.id]=this.getValue()||""},j=function(a){a.advanced||(a.advanced={});a.advanced[this.id]=this.getValue()||""},c=g.lang.common,b=g.lang.link,d;return{title:b.title,minWidth:350,minHeight:230,contents:[{id:"info",label:b.info,title:b.info,elements:[{id:"linkType",type:"select",label:b.type,"default":"url",items:[[b.toUrl,"url"], +[b.toAnchor,"anchor"],[b.toEmail,"email"]],onChange:function(){var a=this.getDialog(),b=["urlOptions","anchorOptions","emailOptions"],k=this.getValue(),e=a.definition.getContents("upload"),e=e&&e.hidden;"url"==k?(g.config.linkShowTargetTab&&a.showPage("target"),e||a.showPage("upload")):(a.hidePage("target"),e||a.hidePage("upload"));for(e=0;e'+CKEDITOR.tools.htmlEncode(b.noAnchors)+"",focus:!0,setup:function(){this.getElement()[d&&d.length?"hide":"show"]()}}],setup:function(){this.getDialog().getContentElement("info","linkType")||this.getElement().hide()}},{type:"vbox",id:"emailOptions",padding:1,children:[{type:"text",id:"emailAddress", +label:b.emailAddress,required:!0,validate:function(){var a=this.getDialog();return!a.getContentElement("info","linkType")||"email"!=a.getValueOf("info","linkType")?!0:CKEDITOR.dialog.validate.notEmpty(b.noEmail).apply(this)},setup:function(a){a.email&&this.setValue(a.email.address);(a=this.getDialog().getContentElement("info","linkType"))&&"email"==a.getValue()&&this.select()},commit:function(a){a.email||(a.email={});a.email.address=this.getValue()}},{type:"text",id:"emailSubject",label:b.emailSubject, +setup:function(a){a.email&&this.setValue(a.email.subject)},commit:function(a){a.email||(a.email={});a.email.subject=this.getValue()}},{type:"textarea",id:"emailBody",label:b.emailBody,rows:3,"default":"",setup:function(a){a.email&&this.setValue(a.email.body)},commit:function(a){a.email||(a.email={});a.email.body=this.getValue()}}],setup:function(){this.getDialog().getContentElement("info","linkType")||this.getElement().hide()}}]},{id:"target",requiredContent:"a[target]",label:b.target,title:b.target, +elements:[{type:"hbox",widths:["50%","50%"],children:[{type:"select",id:"linkTargetType",label:c.target,"default":"notSet",style:"width : 100%;",items:[[c.notSet,"notSet"],[b.targetFrame,"frame"],[b.targetPopup,"popup"],[c.targetNew,"_blank"],[c.targetTop,"_top"],[c.targetSelf,"_self"],[c.targetParent,"_parent"]],onChange:m,setup:function(a){a.target&&this.setValue(a.target.type||"notSet");m.call(this)},commit:function(a){a.target||(a.target={});a.target.type=this.getValue()}},{type:"text",id:"linkTargetName", +label:b.targetFrameName,"default":"",setup:function(a){a.target&&this.setValue(a.target.name)},commit:function(a){a.target||(a.target={});a.target.name=this.getValue().replace(/\W/gi,"")}}]},{type:"vbox",width:"100%",align:"center",padding:2,id:"popupFeatures",children:[{type:"fieldset",label:b.popupFeatures,children:[{type:"hbox",children:[{type:"checkbox",id:"resizable",label:b.popupResizable,setup:f,commit:i},{type:"checkbox",id:"status",label:b.popupStatusBar,setup:f,commit:i}]},{type:"hbox", +children:[{type:"checkbox",id:"location",label:b.popupLocationBar,setup:f,commit:i},{type:"checkbox",id:"toolbar",label:b.popupToolbar,setup:f,commit:i}]},{type:"hbox",children:[{type:"checkbox",id:"menubar",label:b.popupMenuBar,setup:f,commit:i},{type:"checkbox",id:"fullscreen",label:b.popupFullScreen,setup:f,commit:i}]},{type:"hbox",children:[{type:"checkbox",id:"scrollbars",label:b.popupScrollBars,setup:f,commit:i},{type:"checkbox",id:"dependent",label:b.popupDependent,setup:f,commit:i}]},{type:"hbox", +children:[{type:"text",widths:["50%","50%"],labelLayout:"horizontal",label:c.width,id:"width",setup:f,commit:i},{type:"text",labelLayout:"horizontal",widths:["50%","50%"],label:b.popupLeft,id:"left",setup:f,commit:i}]},{type:"hbox",children:[{type:"text",labelLayout:"horizontal",widths:["50%","50%"],label:c.height,id:"height",setup:f,commit:i},{type:"text",labelLayout:"horizontal",label:b.popupTop,widths:["50%","50%"],id:"top",setup:f,commit:i}]}]}]}]},{id:"upload",label:b.upload,title:b.upload,hidden:!0, +filebrowser:"uploadButton",elements:[{type:"file",id:"upload",label:c.upload,style:"height:40px",size:29},{type:"fileButton",id:"uploadButton",label:c.uploadSubmit,filebrowser:"info:url","for":["upload","upload"]}]},{id:"advanced",label:b.advanced,title:b.advanced,elements:[{type:"vbox",padding:1,children:[{type:"hbox",widths:["45%","35%","20%"],children:[{type:"text",id:"advId",requiredContent:"a[id]",label:b.id,setup:h,commit:j},{type:"select",id:"advLangDir",requiredContent:"a[dir]",label:b.langDir, +"default":"",style:"width:110px",items:[[c.notSet,""],[b.langDirLTR,"ltr"],[b.langDirRTL,"rtl"]],setup:h,commit:j},{type:"text",id:"advAccessKey",requiredContent:"a[accesskey]",width:"80px",label:b.acccessKey,maxLength:1,setup:h,commit:j}]},{type:"hbox",widths:["45%","35%","20%"],children:[{type:"text",label:b.name,id:"advName",requiredContent:"a[name]",setup:h,commit:j},{type:"text",label:b.langCode,id:"advLangCode",requiredContent:"a[lang]",width:"110px","default":"",setup:h,commit:j},{type:"text", +label:b.tabIndex,id:"advTabIndex",requiredContent:"a[tabindex]",width:"80px",maxLength:5,setup:h,commit:j}]}]},{type:"vbox",padding:1,children:[{type:"hbox",widths:["45%","55%"],children:[{type:"text",label:b.advisoryTitle,requiredContent:"a[title]","default":"",id:"advTitle",setup:h,commit:j},{type:"text",label:b.advisoryContentType,requiredContent:"a[type]","default":"",id:"advContentType",setup:h,commit:j}]},{type:"hbox",widths:["45%","55%"],children:[{type:"text",label:b.cssClasses,requiredContent:"a(cke-xyz)", +"default":"",id:"advCSSClasses",setup:h,commit:j},{type:"text",label:b.charset,requiredContent:"a[charset]","default":"",id:"advCharset",setup:h,commit:j}]},{type:"hbox",widths:["45%","55%"],children:[{type:"text",label:b.rel,requiredContent:"a[rel]","default":"",id:"advRel",setup:h,commit:j},{type:"text",label:b.styles,requiredContent:"a{cke-xyz}","default":"",id:"advStyles",validate:CKEDITOR.dialog.validate.inlineStyle(g.lang.common.invalidInlineStyle),setup:h,commit:j}]}]}]}],onShow:function(){var a= +this.getParentEditor(),b=a.getSelection(),c=null;(c=l.getSelectedLink(a))&&c.hasAttribute("href")?b.getSelectedElement()||b.selectElement(c):c=null;a=l.parseLinkAttributes(a,c);this._.selectedElement=c;this.setupContent(a)},onOk:function(){var a={};this.commitContent(a);var b=g.getSelection(),c=l.getLinkAttributes(g,a);if(this._.selectedElement){var e=this._.selectedElement,d=e.data("cke-saved-href"),f=e.getHtml();e.setAttributes(c.set);e.removeAttributes(c.removed);if(d==f||"email"==a.type&&-1!= +f.indexOf("@"))e.setHtml("email"==a.type?a.email.address:c.set["data-cke-saved-href"]),b.selectElement(e);delete this._.selectedElement}else b=b.getRanges()[0],b.collapsed&&(a=new CKEDITOR.dom.text("email"==a.type?a.email.address:c.set["data-cke-saved-href"],g.document),b.insertNode(a),b.selectNodeContents(a)),c=new CKEDITOR.style({element:"a",attributes:c.set}),c.type=CKEDITOR.STYLE_INLINE,c.applyToRange(b,g),b.select()},onLoad:function(){g.config.linkShowAdvancedTab||this.hidePage("advanced");g.config.linkShowTargetTab|| +this.hidePage("target")},onFocus:function(){var a=this.getContentElement("info","linkType");a&&"url"==a.getValue()&&(a=this.getContentElement("info","url"),a.select())}}})})(); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/link/images/anchor.png b/zup-painel/assets/scripts/ckeditor/plugins/link/images/anchor.png new file mode 100644 index 0000000..6d861a0 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/link/images/anchor.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/link/images/hidpi/anchor.png b/zup-painel/assets/scripts/ckeditor/plugins/link/images/hidpi/anchor.png new file mode 100644 index 0000000..f504843 Binary files /dev/null and b/zup-painel/assets/scripts/ckeditor/plugins/link/images/hidpi/anchor.png differ diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/dialogs/liststyle.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/dialogs/liststyle.js new file mode 100644 index 0000000..eec0e97 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/dialogs/liststyle.js @@ -0,0 +1,10 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function d(c,d){var b;try{b=c.getSelection().getRanges()[0]}catch(f){return null}b.shrink(CKEDITOR.SHRINK_TEXT);return c.elementPath(b.getCommonAncestor()).contains(d,1)}function e(c,e){var b=c.lang.liststyle;if("bulletedListStyle"==e)return{title:b.bulletedTitle,minWidth:300,minHeight:50,contents:[{id:"info",accessKey:"I",elements:[{type:"select",label:b.type,id:"type",align:"center",style:"width:150px",items:[[b.notset,""],[b.circle,"circle"],[b.disc,"disc"],[b.square,"square"]],setup:function(a){this.setValue(a.getStyle("list-style-type")|| +h[a.getAttribute("type")]||a.getAttribute("type")||"")},commit:function(a){var b=this.getValue();b?a.setStyle("list-style-type",b):a.removeStyle("list-style-type")}}]}],onShow:function(){var a=this.getParentEditor();(a=d(a,"ul"))&&this.setupContent(a)},onOk:function(){var a=this.getParentEditor();(a=d(a,"ul"))&&this.commitContent(a)}};if("numberedListStyle"==e){var g=[[b.notset,""],[b.lowerRoman,"lower-roman"],[b.upperRoman,"upper-roman"],[b.lowerAlpha,"lower-alpha"],[b.upperAlpha,"upper-alpha"], +[b.decimal,"decimal"]];(!CKEDITOR.env.ie||7", +numberedTitle:"Eienskappe van genommerde lys",square:"Vierkant",start:"Begin",type:"Tipe",upperAlpha:"Hoofletters (A, B, C, D, E, ens.)",upperRoman:"Romeinse hoofletters (I, II, III, IV, V, ens.)",validateStartNumber:"Beginnommer van lys moet 'n heelgetal wees."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ar.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ar.js new file mode 100644 index 0000000..72b9f52 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ar.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","ar",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/bg.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/bg.js new file mode 100644 index 0000000..5cc312a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/bg.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","bg",{armenian:"Арменско номериране",bulletedTitle:"Bulleted List Properties",circle:"Кръг",decimal:"Числа (1, 2, 3 и др.)",decimalLeadingZero:"Числа с водеща нула (01, 02, 03 и т.н.)",disc:"Диск",georgian:"Грузинско номериране (an, ban, gan, и т.н.)",lowerAlpha:"Малки букви (а, б, в, г, д и т.н.)",lowerGreek:"Малки гръцки букви (алфа, бета, гама и т.н.)",lowerRoman:"Малки римски числа (i, ii, iii, iv, v и т.н.)",none:"Няма",notset:"<не е указано>",numberedTitle:"Numbered List Properties", +square:"Квадрат",start:"Старт",type:"Тип",upperAlpha:"Големи букви (А, Б, В, Г, Д и т.н.)",upperRoman:"Големи римски числа (I, II, III, IV, V и т.н.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/bn.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/bn.js new file mode 100644 index 0000000..d002baf --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/bn.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","bn",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/bs.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/bs.js new file mode 100644 index 0000000..af72e35 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/bs.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","bs",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ca.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ca.js new file mode 100644 index 0000000..42455a3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ca.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","ca",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/cs.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/cs.js new file mode 100644 index 0000000..d3abb5c --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/cs.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","cs",{armenian:"Arménské",bulletedTitle:"Vlastnosti odrážek",circle:"Kroužky",decimal:"Arabská čísla (1, 2, 3, atd.)",decimalLeadingZero:"Arabská čísla uvozená nulou (01, 02, 03, atd.)",disc:"Kolečka",georgian:"Gruzínské (an, ban, gan, atd.)",lowerAlpha:"Malá latinka (a, b, c, d, e, atd.)",lowerGreek:"Malé řecké (alpha, beta, gamma, atd.)",lowerRoman:"Malé římské (i, ii, iii, iv, v, atd.)",none:"Nic",notset:"",numberedTitle:"Vlastnosti číslování", +square:"Čtverce",start:"Počátek",type:"Typ",upperAlpha:"Velká latinka (A, B, C, D, E, atd.)",upperRoman:"Velké římské (I, II, III, IV, V, atd.)",validateStartNumber:"Číslování musí začínat celým číslem."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/cy.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/cy.js new file mode 100644 index 0000000..a5d6cc5 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/cy.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","cy",{armenian:"Rhifo Armeneg",bulletedTitle:"Priodweddau Rhestr Fwled",circle:"Cylch",decimal:"Degol (1, 2, 3, ayyb.)",decimalLeadingZero:"Degol â sero arweiniol (01, 02, 03, ayyb.)",disc:"Disg",georgian:"Rhifau Sioraidd (an, ban, gan, ayyb.)",lowerAlpha:"Alffa Is (a, b, c, d, e, ayyb.)",lowerGreek:"Groeg Is (alpha, beta, gamma, ayyb.)",lowerRoman:"Rhufeinig Is (i, ii, iii, iv, v, ayyb.)",none:"Dim",notset:"",numberedTitle:"Priodweddau Rhestr Rifol", +square:"Sgwâr",start:"Dechrau",type:"Math",upperAlpha:"Alffa Uwch (A, B, C, D, E, ayyb.)",upperRoman:"Rhufeinig Uwch (I, II, III, IV, V, ayyb.)",validateStartNumber:"Rhaid bod y rhif cychwynnol yn gyfanrif."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/da.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/da.js new file mode 100644 index 0000000..d09c455 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/da.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","da",{armenian:"Armensk nummering",bulletedTitle:"Værdier for cirkelpunktopstilling",circle:"Cirkel",decimal:"Decimal (1, 2, 3, osv.)",decimalLeadingZero:"Decimaler med 0 først (01, 02, 03, etc.)",disc:"Værdier for diskpunktopstilling",georgian:"Georgiansk nummering (an, ban, gan, etc.)",lowerAlpha:"Små alfabet (a, b, c, d, e, etc.)",lowerGreek:"Små græsk (alpha, beta, gamma, etc.)",lowerRoman:"Små romerske (i, ii, iii, iv, v, etc.)",none:"Ingen",notset:"", +numberedTitle:"Egenskaber for nummereret liste",square:"Firkant",start:"Start",type:"Type",upperAlpha:"Store alfabet (A, B, C, D, E, etc.)",upperRoman:"Store romerske (I, II, III, IV, V, etc.)",validateStartNumber:"Den nummererede liste skal starte med et rundt nummer"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/de.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/de.js new file mode 100644 index 0000000..ecd23c9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/de.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","de",{armenian:"Armenische Nummerierung",bulletedTitle:"Aufzählungslisteneigenschaften",circle:"Ring",decimal:"Dezimal (1, 2, 3, etc.)",decimalLeadingZero:"Dezimal mit führender Null (01, 02, 03, usw.)",disc:"Kreis",georgian:"Georgische Nummerierung (an, ban, gan, usw.)",lowerAlpha:"Klein Alpha (a, b, c, d, e, usw.)",lowerGreek:"Klein griechisch (alpha, beta, gamma, usw.)",lowerRoman:"Klein römisch (i, ii, iii, iv, v, usw.)",none:"Keine",notset:"", +numberedTitle:"Nummerierte Listeneigenschaften",square:"Quadrat",start:"Start",type:"Typ",upperAlpha:"Groß alpha (A, B, C, D, E, etc.)",upperRoman:"Groß römisch (I, II, III, IV, V, usw.)",validateStartNumber:"Listenstartnummer muss eine ganze Zahl sein."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/el.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/el.js new file mode 100644 index 0000000..d077c8e --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/el.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","el",{armenian:"Αρμενική αρίθμηση",bulletedTitle:"Ιδιότητες Λίστας Σημείων",circle:"Κύκλος",decimal:"Δεκαδική (1, 2, 3, κτλ)",decimalLeadingZero:"Δεκαδική με αρχικό μηδεν (01, 02, 03, κτλ)",disc:"Δίσκος",georgian:"Γεωργιανή αρίθμηση (ა, ბ, გ, κτλ)",lowerAlpha:"Μικρά Λατινικά (a, b, c, d, e, κτλ.)",lowerGreek:"Μικρά Ελληνικά (α, β, γ, κτλ)",lowerRoman:"Μικρά Ρωμαϊκά (i, ii, iii, iv, v, κτλ)",none:"Καμία",notset:"<δεν έχει οριστεί>",numberedTitle:"Ιδιότητες Αριθμημένης Λίστας ", +square:"Τετράγωνο",start:"Εκκίνηση",type:"Τύπος",upperAlpha:"Κεφαλαία Λατινικά (A, B, C, D, E, κτλ)",upperRoman:"Κεφαλαία Ρωμαϊκά (I, II, III, IV, V, κτλ)",validateStartNumber:"Ο αριθμός εκκίνησης της αρίθμησης πρέπει να είναι ακέραιος αριθμός."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en-au.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en-au.js new file mode 100644 index 0000000..41e685f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en-au.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","en-au",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en-ca.js new file mode 100644 index 0000000..633ecd9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en-ca.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","en-ca",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en-gb.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en-gb.js new file mode 100644 index 0000000..6f1ca2a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en-gb.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","en-gb",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en.js new file mode 100644 index 0000000..6bba5a2 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/en.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","en",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/eo.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/eo.js new file mode 100644 index 0000000..6ef97ac --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/eo.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","eo",{armenian:"Armena nombrado",bulletedTitle:"Atributoj de Bula Listo",circle:"Cirklo",decimal:"Dekumaj Nombroj (1, 2, 3, ktp.)",decimalLeadingZero:"Dekumaj Nombroj malantaŭ nulo (01, 02, 03, ktp.)",disc:"Disko",georgian:"Gruza nombrado (an, ban, gan, ktp.)",lowerAlpha:"Minusklaj Literoj (a, b, c, d, e, ktp.)",lowerGreek:"Grekaj Minusklaj Literoj (alpha, beta, gamma, ktp.)",lowerRoman:"Minusklaj Romanaj Nombroj (i, ii, iii, iv, v, ktp.)",none:"Neniu",notset:"", +numberedTitle:"Atributoj de Numera Listo",square:"kvadrato",start:"Komenco",type:"Tipo",upperAlpha:"Majusklaj Literoj (A, B, C, D, E, ktp.)",upperRoman:"Majusklaj Romanaj Nombroj (I, II, III, IV, V, ktp.)",validateStartNumber:"La unua listero devas esti entjera nombro."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/es.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/es.js new file mode 100644 index 0000000..06ed01a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/es.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","es",{armenian:"Numeración armenia",bulletedTitle:"Propiedades de viñetas",circle:"Círculo",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal con cero inicial (01, 02, 03, etc.)",disc:"Disco",georgian:"Numeración georgiana (an, ban, gan, etc.)",lowerAlpha:"Alfabeto en minúsculas (a, b, c, d, e, etc.)",lowerGreek:"Letras griegas (alpha, beta, gamma, etc.)",lowerRoman:"Números romanos en minúsculas (i, ii, iii, iv, v, etc.)",none:"Ninguno",notset:"", +numberedTitle:"Propiedades de lista numerada",square:"Cuadrado",start:"Inicio",type:"Tipo",upperAlpha:"Alfabeto en mayúsculas (A, B, C, D, E, etc.)",upperRoman:"Números romanos en mayúsculas (I, II, III, IV, V, etc.)",validateStartNumber:"El Inicio debe ser un número entero."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/et.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/et.js new file mode 100644 index 0000000..9212207 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/et.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","et",{armenian:"Armeenia numbrid",bulletedTitle:"Punktloendi omadused",circle:"Ring",decimal:"Numbrid (1, 2, 3, jne)",decimalLeadingZero:"Numbrid algusnulliga (01, 02, 03, jne)",disc:"Täpp",georgian:"Gruusia numbrid (an, ban, gan, jne)",lowerAlpha:"Väiketähed (a, b, c, d, e, jne)",lowerGreek:"Kreeka väiketähed (alpha, beta, gamma, jne)",lowerRoman:"Väiksed rooma numbrid (i, ii, iii, iv, v, jne)",none:"Puudub",notset:"",numberedTitle:"Numberloendi omadused", +square:"Ruut",start:"Algus",type:"Liik",upperAlpha:"Suurtähed (A, B, C, D, E, jne)",upperRoman:"Suured rooma numbrid (I, II, III, IV, V, jne)",validateStartNumber:"Loendi algusnumber peab olema täisarv."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/eu.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/eu.js new file mode 100644 index 0000000..dc0d63a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/eu.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","eu",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fa.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fa.js new file mode 100644 index 0000000..5a588c0 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fa.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","fa",{armenian:"شماره‌گذاری ارمنی",bulletedTitle:"خصوصیات فهرست نقطه‌ای",circle:"دایره",decimal:"ده‌دهی (۱، ۲، ۳، ...)",decimalLeadingZero:"دهدهی همراه با صفر (۰۱، ۰۲، ۰۳، ...)",disc:"صفحه گرد",georgian:"شمارهگذاری گریگورین (an, ban, gan, etc.)",lowerAlpha:"پانویس الفبایی (a, b, c, d, e, etc.)",lowerGreek:"پانویس یونانی (alpha, beta, gamma, etc.)",lowerRoman:"پانویس رومی (i, ii, iii, iv, v, etc.)",none:"هیچ",notset:"<تنظیم نشده>",numberedTitle:"ویژگیهای فهرست شمارهدار", +square:"چهارگوش",start:"شروع",type:"نوع",upperAlpha:"بالانویس الفبایی (A, B, C, D, E, etc.)",upperRoman:"بالانویس رومی (I, II, III, IV, V, etc.)",validateStartNumber:"فهرست شماره شروع باید یک عدد صحیح باشد."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fi.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fi.js new file mode 100644 index 0000000..2e55ab9 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fi.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","fi",{armenian:"Armeenialainen numerointi",bulletedTitle:"Numeroimattoman listan ominaisuudet",circle:"Ympyrä",decimal:"Desimaalit (1, 2, 3, jne.)",decimalLeadingZero:"Desimaalit, alussa nolla (01, 02, 03, jne.)",disc:"Levy",georgian:"Georgialainen numerointi (an, ban, gan, etc.)",lowerAlpha:"Pienet aakkoset (a, b, c, d, e, jne.)",lowerGreek:"Pienet kreikkalaiset (alpha, beta, gamma, jne.)",lowerRoman:"Pienet roomalaiset (i, ii, iii, iv, v, jne.)",none:"Ei mikään", +notset:"",numberedTitle:"Numeroidun listan ominaisuudet",square:"Neliö",start:"Alku",type:"Tyyppi",upperAlpha:"Isot aakkoset (A, B, C, D, E, jne.)",upperRoman:"Isot roomalaiset (I, II, III, IV, V, jne.)",validateStartNumber:"Listan ensimmäisen numeron tulee olla kokonaisluku."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fo.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fo.js new file mode 100644 index 0000000..c7861be --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fo.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","fo",{armenian:"Armensk talskipan",bulletedTitle:"Eginleikar fyri lista við prikkum",circle:"Sirkul",decimal:"Vanlig tøl (1, 2, 3, etc.)",decimalLeadingZero:"Tøl við null frammanfyri (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgisk talskipan (an, ban, gan, osv.)",lowerAlpha:"Lítlir bókstavir (a, b, c, d, e, etc.)",lowerGreek:"Grikskt við lítlum (alpha, beta, gamma, etc.)",lowerRoman:"Lítil rómaratøl (i, ii, iii, iv, v, etc.)",none:"Einki",notset:"", +numberedTitle:"Eginleikar fyri lista við tølum",square:"Fýrkantur",start:"Byrjan",type:"Slag",upperAlpha:"Stórir bókstavir (A, B, C, D, E, etc.)",upperRoman:"Stór rómaratøl (I, II, III, IV, V, etc.)",validateStartNumber:"Byrjunartalið fyri lista má vera eitt heiltal."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fr-ca.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fr-ca.js new file mode 100644 index 0000000..1c2925a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fr-ca.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","fr-ca",{armenian:"Numération arménienne",bulletedTitle:"Propriété de liste à puce",circle:"Cercle",decimal:"Décimal (1, 2, 3, etc.)",decimalLeadingZero:"Décimal avec zéro (01, 02, 03, etc.)",disc:"Disque",georgian:"Numération géorgienne (an, ban, gan, etc.)",lowerAlpha:"Alphabétique minuscule (a, b, c, d, e, etc.)",lowerGreek:"Grecque minuscule (alpha, beta, gamma, etc.)",lowerRoman:"Romain minuscule (i, ii, iii, iv, v, etc.)",none:"Aucun",notset:"", +numberedTitle:"Propriété de la liste numérotée",square:"Carré",start:"Début",type:"Type",upperAlpha:"Alphabétique majuscule (A, B, C, D, E, etc.)",upperRoman:"Romain Majuscule (I, II, III, IV, V, etc.)",validateStartNumber:"Le numéro de début de liste doit être un entier."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fr.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fr.js new file mode 100644 index 0000000..a787f63 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/fr.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","fr",{armenian:"Numération arménienne",bulletedTitle:"Propriétés de la liste à puces",circle:"Cercle",decimal:"Décimal (1, 2, 3, etc.)",decimalLeadingZero:"Décimal précédé par un 0 (01, 02, 03, etc.)",disc:"Disque",georgian:"Numération géorgienne (an, ban, gan, etc.)",lowerAlpha:"Alphabétique minuscules (a, b, c, d, e, etc.)",lowerGreek:"Grec minuscule (alpha, beta, gamma, etc.)",lowerRoman:"Nombres romains minuscules (i, ii, iii, iv, v, etc.)",none:"Aucun",notset:"", +numberedTitle:"Propriétés de la liste numérotée",square:"Carré",start:"Début",type:"Type",upperAlpha:"Alphabétique majuscules (A, B, C, D, E, etc.)",upperRoman:"Nombres romains majuscules (I, II, III, IV, V, etc.)",validateStartNumber:"Le premier élément de la liste doit être un nombre entier."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/gl.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/gl.js new file mode 100644 index 0000000..f4e986f --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/gl.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","gl",{armenian:"Numeración armenia",bulletedTitle:"Propiedades da lista viñeteada",circle:"Circulo",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal con cero á esquerda (01, 02, 03, etc.)",disc:"Disc",georgian:"Numeración xeorxiana (an, ban, gan, etc.)",lowerAlpha:"Alfabeto en minúsculas (a, b, c, d, e, etc.)",lowerGreek:"Grego en minúsculas (alpha, beta, gamma, etc.)",lowerRoman:"Números romanos en minúsculas (i, ii, iii, iv, v, etc.)",none:"Ningún", +notset:"",numberedTitle:"Propiedades da lista numerada",square:"Cadrado",start:"Inicio",type:"Tipo",upperAlpha:"Alfabeto en maiúsculas (A, B, C, D, E, etc.)",upperRoman:"Números romanos en maiúsculas (I, II, III, IV, V, etc.)",validateStartNumber:"O número de inicio da lista debe ser un número enteiro."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/gu.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/gu.js new file mode 100644 index 0000000..48995fb --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/gu.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","gu",{armenian:"અરમેનિયન આંકડા પદ્ધતિ",bulletedTitle:"બુલેટેડ લીસ્ટના ગુણ",circle:"વર્તુળ",decimal:"આંકડા (1, 2, 3, etc.)",decimalLeadingZero:"સુન્ય આગળ આંકડા (01, 02, 03, etc.)",disc:"ડિસ્ક",georgian:"ગેઓર્ગિયન આંકડા પદ્ધતિ (an, ban, gan, etc.)",lowerAlpha:"આલ્ફા નાના (a, b, c, d, e, etc.)",lowerGreek:"ગ્રીક નાના (alpha, beta, gamma, etc.)",lowerRoman:"રોમન નાના (i, ii, iii, iv, v, etc.)",none:"કસુ ",notset:"<સેટ નથી>",numberedTitle:"આંકડાના લીસ્ટના ગુણ",square:"ચોરસ", +start:"શરુ કરવું",type:"પ્રકાર",upperAlpha:"આલ્ફા મોટા (A, B, C, D, E, etc.)",upperRoman:"રોમન મોટા (I, II, III, IV, V, etc.)",validateStartNumber:"લીસ્ટના સરુઆતનો આંકડો પુરો હોવો જોઈએ."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/he.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/he.js new file mode 100644 index 0000000..ba74651 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/he.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","he",{armenian:"ספרות ארמניות",bulletedTitle:"תכונות רשימת תבליטים",circle:"עיגול ריק",decimal:"ספרות (1, 2, 3 וכו')",decimalLeadingZero:"ספרות עם 0 בהתחלה (01, 02, 03 וכו')",disc:"עיגול מלא",georgian:"ספרות גיאורגיות (an, ban, gan וכו')",lowerAlpha:"אותיות אנגליות קטנות (a, b, c, d, e וכו')",lowerGreek:"אותיות יווניות קטנות (alpha, beta, gamma וכו')",lowerRoman:"ספירה רומית באותיות קטנות (i, ii, iii, iv, v וכו')",none:"ללא",notset:"<לא נקבע>",numberedTitle:"תכונות רשימה ממוספרת", +square:"ריבוע",start:"תחילת מספור",type:"סוג",upperAlpha:"אותיות אנגליות גדולות (A, B, C, D, E וכו')",upperRoman:"ספירה רומיות באותיות גדולות (I, II, III, IV, V וכו')",validateStartNumber:"שדה תחילת המספור חייב להכיל מספר שלם."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/hi.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/hi.js new file mode 100644 index 0000000..23e5aff --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/hi.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","hi",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/hr.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/hr.js new file mode 100644 index 0000000..66a4796 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/hr.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","hr",{armenian:"Armenijska numeracija",bulletedTitle:"Svojstva liste",circle:"Krug",decimal:"Decimalna numeracija (1, 2, 3, itd.)",decimalLeadingZero:"Decimalna s vodećom nulom (01, 02, 03, itd)",disc:"Disk",georgian:"Gruzijska numeracija(an, ban, gan, etc.)",lowerAlpha:"Znakovi mala slova (a, b, c, d, e, itd.)",lowerGreek:"Grčka numeracija mala slova (alfa, beta, gama, itd).",lowerRoman:"Romanska numeracija mala slova (i, ii, iii, iv, v, itd.)",none:"Bez",notset:"", +numberedTitle:"Svojstva brojčane liste",square:"Kvadrat",start:"Početak",type:"Vrsta",upperAlpha:"Znakovi velika slova (A, B, C, D, E, itd.)",upperRoman:"Romanska numeracija velika slova (I, II, III, IV, V, itd.)",validateStartNumber:"Početak brojčane liste mora biti cijeli broj."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/hu.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/hu.js new file mode 100644 index 0000000..d37d441 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/hu.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","hu",{armenian:"Örmény számozás",bulletedTitle:"Pontozott lista tulajdonságai",circle:"Kör",decimal:"Arab számozás (1, 2, 3, stb.)",decimalLeadingZero:"Számozás bevezető nullákkal (01, 02, 03, stb.)",disc:"Korong",georgian:"Grúz számozás (an, ban, gan, stb.)",lowerAlpha:"Kisbetűs (a, b, c, d, e, stb.)",lowerGreek:"Görög (alpha, beta, gamma, stb.)",lowerRoman:"Római kisbetűs (i, ii, iii, iv, v, stb.)",none:"Nincs",notset:"",numberedTitle:"Sorszámozott lista tulajdonságai", +square:"Négyzet",start:"Kezdőszám",type:"Típus",upperAlpha:"Nagybetűs (A, B, C, D, E, stb.)",upperRoman:"Római nagybetűs (I, II, III, IV, V, stb.)",validateStartNumber:"A kezdőszám nem lehet tört érték."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/id.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/id.js new file mode 100644 index 0000000..65d4851 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/id.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","id",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Lingkaran",decimal:"Desimal (1, 2, 3, dst.)",decimalLeadingZero:"Desimal diawali angka nol (01, 02, 03, dst.)",disc:"Cakram",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Huruf Kecil (a, b, c, d, e, dst.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Angka Romawi (i, ii, iii, iv, v, dst.)",none:"Tidak ada",notset:"",numberedTitle:"Numbered List Properties", +square:"Persegi",start:"Mulai",type:"Tipe",upperAlpha:"Huruf Besar (A, B, C, D, E, dst.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/is.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/is.js new file mode 100644 index 0000000..3f8cd1a --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/is.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","is",{armenian:"Armenian numbering",bulletedTitle:"Bulleted List Properties",circle:"Circle",decimal:"Decimal (1, 2, 3, etc.)",decimalLeadingZero:"Decimal leading zero (01, 02, 03, etc.)",disc:"Disc",georgian:"Georgian numbering (an, ban, gan, etc.)",lowerAlpha:"Lower Alpha (a, b, c, d, e, etc.)",lowerGreek:"Lower Greek (alpha, beta, gamma, etc.)",lowerRoman:"Lower Roman (i, ii, iii, iv, v, etc.)",none:"None",notset:"",numberedTitle:"Numbered List Properties", +square:"Square",start:"Start",type:"Type",upperAlpha:"Upper Alpha (A, B, C, D, E, etc.)",upperRoman:"Upper Roman (I, II, III, IV, V, etc.)",validateStartNumber:"List start number must be a whole number."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/it.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/it.js new file mode 100644 index 0000000..674c5e1 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/it.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","it",{armenian:"Numerazione Armena",bulletedTitle:"Proprietà liste puntate",circle:"Cerchio",decimal:"Decimale (1, 2, 3, ecc.)",decimalLeadingZero:"Decimale preceduto da 0 (01, 02, 03, ecc.)",disc:"Disco",georgian:"Numerazione Georgiana (an, ban, gan, ecc.)",lowerAlpha:"Alfabetico minuscolo (a, b, c, d, e, ecc.)",lowerGreek:"Greco minuscolo (alpha, beta, gamma, ecc.)",lowerRoman:"Numerazione Romana minuscola (i, ii, iii, iv, v, ecc.)",none:"Nessuno",notset:"", +numberedTitle:"Proprietà liste numerate",square:"Quadrato",start:"Inizio",type:"Tipo",upperAlpha:"Alfabetico maiuscolo (A, B, C, D, E, ecc.)",upperRoman:"Numerazione Romana maiuscola (I, II, III, IV, V, ecc.)",validateStartNumber:"Il numero di inizio di una lista numerata deve essere un numero intero."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ja.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ja.js new file mode 100644 index 0000000..934cc98 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ja.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","ja",{armenian:"アルメニア数字",bulletedTitle:"箇条書きのプロパティ",circle:"白丸",decimal:"数字 (1, 2, 3, etc.)",decimalLeadingZero:"0付きの数字 (01, 02, 03, etc.)",disc:"黒丸",georgian:"グルジア数字 (an, ban, gan, etc.)",lowerAlpha:"小文字アルファベット (a, b, c, d, e, etc.)",lowerGreek:"小文字ギリシャ文字 (alpha, beta, gamma, etc.)",lowerRoman:"小文字ローマ数字 (i, ii, iii, iv, v, etc.)",none:"なし",notset:"<なし>",numberedTitle:"番号付きリストのプロパティ",square:"四角",start:"開始",type:"種類",upperAlpha:"大文字アルファベット (A, B, C, D, E, etc.)", +upperRoman:"大文字ローマ数字 (I, II, III, IV, V, etc.)",validateStartNumber:"リストの開始番号は数値で入力してください。"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ka.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ka.js new file mode 100644 index 0000000..f820e66 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ka.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","ka",{armenian:"სომხური გადანომრვა",bulletedTitle:"ღილებიანი სიის პარამეტრები",circle:"წრეწირი",decimal:"რიცხვებით (1, 2, 3, ..)",decimalLeadingZero:"ნულით დაწყებული რიცხვებით (01, 02, 03, ..)",disc:"წრე",georgian:"ქართული გადანომრვა (ან, ბან, გან, ..)",lowerAlpha:"პატარა ლათინური ასოებით (a, b, c, d, e, ..)",lowerGreek:"პატარა ბერძნული ასოებით (ალფა, ბეტა, გამა, ..)",lowerRoman:"რომაული გადანომრვცა პატარა ციფრებით (i, ii, iii, iv, v, ..)",none:"არაფერი",notset:"<არაფერი>", +numberedTitle:"გადანომრილი სიის პარამეტრები",square:"კვადრატი",start:"საწყისი",type:"ტიპი",upperAlpha:"დიდი ლათინური ასოებით (A, B, C, D, E, ..)",upperRoman:"რომაული გადანომრვა დიდი ციფრებით (I, II, III, IV, V, etc.)",validateStartNumber:"სიის საწყისი მთელი რიცხვი უნდა იყოს."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/km.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/km.js new file mode 100644 index 0000000..181efe3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/km.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","km",{armenian:"លេខ​អារមេនី",bulletedTitle:"លក្ខណៈ​សម្បត្តិ​បញ្ជី​ជា​ចំណុច",circle:"រង្វង់​មូល",decimal:"លេខ​ទសភាគ (1, 2, 3, ...)",decimalLeadingZero:"ទសភាគ​ចាប់​ផ្ដើម​ពី​សូន្យ (01, 02, 03, ...)",disc:"ថាស",georgian:"លេខ​ចចជា (an, ban, gan, ...)",lowerAlpha:"ព្យញ្ជនៈ​តូច (a, b, c, d, e, ...)",lowerGreek:"លេខ​ក្រិក​តូច (alpha, beta, gamma, ...)",lowerRoman:"លេខ​រ៉ូម៉ាំង​តូច (i, ii, iii, iv, v, ...)",none:"គ្មាន",notset:"",numberedTitle:"លក្ខណៈ​សម្បត្តិ​បញ្ជី​ជា​លេខ", +square:"ការេ",start:"ចាប់​ផ្ដើម",type:"ប្រភេទ",upperAlpha:"អក្សរ​ធំ (A, B, C, D, E, ...)",upperRoman:"លេខ​រ៉ូម៉ាំង​ធំ (I, II, III, IV, V, ...)",validateStartNumber:"លេខ​ចាប់​ផ្ដើម​បញ្ជី ត្រូវ​តែ​ជា​តួ​លេខ​ពិត​ប្រាកដ។"}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ko.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ko.js new file mode 100644 index 0000000..91469f3 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ko.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","ko",{armenian:"아르메니아 숫자",bulletedTitle:"순서 없는 목록 속성",circle:"원",decimal:"수 (1, 2, 3, 등)",decimalLeadingZero:"0이 붙은 수 (01, 02, 03, 등)",disc:"내림차순",georgian:"그루지야 숫자 (an, ban, gan, 등)",lowerAlpha:"영소문자 (a, b, c, d, e, 등)",lowerGreek:"그리스 소문자 (alpha, beta, gamma, 등)",lowerRoman:"로마 소문자 (i, ii, iii, iv, v, 등)",none:"없음",notset:"<설정 없음>",numberedTitle:"순서 있는 목록 속성",square:"사각",start:"시작",type:"유형",upperAlpha:"영대문자 (A, B, C, D, E, 등)",upperRoman:"로마 대문자 (I, II, III, IV, V, 등)", +validateStartNumber:"목록 시작 숫자는 정수여야 합니다."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ku.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ku.js new file mode 100644 index 0000000..ccb7e19 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/ku.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","ku",{armenian:"ئاراستەی ژمارەی ئەرمەنی",bulletedTitle:"خاسیەتی لیستی خاڵی",circle:"بازنه",decimal:"ژمارە (1, 2, 3, وە هیتر.)",decimalLeadingZero:"ژمارە سفڕی لەپێشەوه (01, 02, 03, وە هیتر.)",disc:"پەپکە",georgian:"ئاراستەی ژمارەی جۆڕجی (an, ban, gan, وە هیتر.)",lowerAlpha:"ئەلفابێی بچووك (a, b, c, d, e, وە هیتر.)",lowerGreek:"یۆنانی بچووك (alpha, beta, gamma, وە هیتر.)",lowerRoman:"ژمارەی ڕۆمی بچووك (i, ii, iii, iv, v, وە هیتر.)",none:"هیچ",notset:"<دانەندراوه>", +numberedTitle:"خاسیەتی لیستی ژمارەیی",square:"چووراگۆشە",start:"دەستپێکردن",type:"جۆر",upperAlpha:"ئەلفابێی گەوره (A, B, C, D, E, وە هیتر.)",upperRoman:"ژمارەی ڕۆمی گەوره (I, II, III, IV, V, وە هیتر.)",validateStartNumber:"دەستپێکەری لیستی ژمارەیی دەبێت تەنها ژمارە بێت."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/lt.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/lt.js new file mode 100644 index 0000000..c563c96 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/lt.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","lt",{armenian:"Armėniški skaitmenys",bulletedTitle:"Ženklelinio sąrašo nustatymai",circle:"Apskritimas",decimal:"Dešimtainis (1, 2, 3, t.t)",decimalLeadingZero:"Dešimtainis su nuliu priekyje (01, 02, 03, t.t)",disc:"Diskas",georgian:"Gruziniški skaitmenys (an, ban, gan, t.t)",lowerAlpha:"Mažosios Alpha (a, b, c, d, e, t.t)",lowerGreek:"Mažosios Graikų (alpha, beta, gamma, t.t)",lowerRoman:"Mažosios Romėnų (i, ii, iii, iv, v, t.t)",none:"Niekas",notset:"", +numberedTitle:"Skaitmeninio sąrašo nustatymai",square:"Kvadratas",start:"Pradžia",type:"Rūšis",upperAlpha:"Didžiosios Alpha (A, B, C, D, E, t.t)",upperRoman:"Didžiosios Romėnų (I, II, III, IV, V, t.t)",validateStartNumber:"Sąrašo pradžios skaitmuo turi būti sveikas skaičius."}); \ No newline at end of file diff --git a/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/lv.js b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/lv.js new file mode 100644 index 0000000..94c4188 --- /dev/null +++ b/zup-painel/assets/scripts/ckeditor/plugins/liststyle/lang/lv.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("liststyle","lv",{armenian:"Armēņu skaitļi",bulletedTitle:"Vienkārša saraksta uzstādījumi",circle:"Aplis",decimal:"Decimālie (1, 2, 3, utt)",decimalLeadingZero:"Decimālie ar nulli (01, 02, 03, utt)",disc:"Disks",georgian:"Gruzīņu skaitļi (an, ban, gan, utt)",lowerAlpha:"Mazie alfabēta (a, b, c, d, e, utt)",lowerGreek:"Mazie grieķu (alfa, beta, gamma, utt)",lowerRoman:"Mazie romāņu (i, ii, iii, iv, v, utt)",none:"Nekas",notset:"