mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-06-17 06:11:37 +00:00
first commit
This commit is contained in:
Executable
+105
@@ -0,0 +1,105 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileOverview Defines the {@link CKEDITOR.lang} object, for the
|
||||
* Galician language.
|
||||
*/
|
||||
|
||||
/**#@+
|
||||
@type String
|
||||
@example
|
||||
*/
|
||||
|
||||
/**
|
||||
* Contains the dictionary of language entries.
|
||||
* @namespace
|
||||
*/
|
||||
CKEDITOR.lang[ 'gl' ] = {
|
||||
/**
|
||||
* The language reading direction. Possible values are "rtl" for
|
||||
* Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
|
||||
* languages (like English).
|
||||
* @default 'ltr'
|
||||
*/
|
||||
dir: 'ltr',
|
||||
|
||||
// ARIA description.
|
||||
editor: 'Editor de texto mellorado',
|
||||
|
||||
// Common messages and labels.
|
||||
common: {
|
||||
// Screenreader titles. Please note that screenreaders are not always capable
|
||||
// of reading non-English words. So be careful while translating it.
|
||||
editorHelp: 'Prema ALT 0 para obter axuda',
|
||||
|
||||
browseServer: 'Examinar o servidor',
|
||||
url: 'URL',
|
||||
protocol: 'Protocolo',
|
||||
upload: 'Enviar',
|
||||
uploadSubmit: 'Enviar ao servidor',
|
||||
image: 'Imaxe',
|
||||
flash: 'Flash',
|
||||
form: 'Formulario',
|
||||
checkbox: 'Caixa de selección',
|
||||
radio: 'Botón de opción',
|
||||
textField: 'Campo de texto',
|
||||
textarea: 'Área de texto',
|
||||
hiddenField: 'Campo agochado',
|
||||
button: 'Botón',
|
||||
select: 'Campo de selección',
|
||||
imageButton: 'Botón de imaxe',
|
||||
notSet: '<sen estabelecer>',
|
||||
id: 'ID',
|
||||
name: 'Nome',
|
||||
langDir: 'Dirección de escritura do idioma',
|
||||
langDirLtr: 'Esquerda a dereita (LTR)',
|
||||
langDirRtl: 'Dereita a esquerda (RTL)',
|
||||
langCode: 'Código do idioma',
|
||||
longDescr: 'Descrición completa do URL',
|
||||
cssClass: 'Clases da folla de estilos',
|
||||
advisoryTitle: 'Título',
|
||||
cssStyle: 'Estilo',
|
||||
ok: 'Aceptar',
|
||||
cancel: 'Cancelar',
|
||||
close: 'Pechar',
|
||||
preview: 'Vista previa',
|
||||
resize: 'Redimensionar',
|
||||
generalTab: 'Xeral',
|
||||
advancedTab: 'Avanzado',
|
||||
validateNumberFailed: 'Este valor non é un número.',
|
||||
confirmNewPage: 'Calquera cambio que non gardara neste contido perderase.\r\nConfirma que quere cargar unha páxina nova?',
|
||||
confirmCancel: 'Algunhas das opcións foron cambiadas.\r\nConfirma que quere pechar o diálogo?',
|
||||
options: 'Opcións',
|
||||
target: 'Destino',
|
||||
targetNew: 'Nova xanela (_blank)',
|
||||
targetTop: 'Xanela principal (_top)',
|
||||
targetSelf: 'Mesma xanela (_self)',
|
||||
targetParent: 'Xanela superior (_parent)',
|
||||
langDirLTR: 'Esquerda a dereita (LTR)',
|
||||
langDirRTL: 'Dereita a esquerda (RTL)',
|
||||
styles: 'Estilo',
|
||||
cssClasses: 'Clases da folla de estilos',
|
||||
width: 'Largo',
|
||||
height: 'Alto',
|
||||
align: 'Aliñamento',
|
||||
alignLeft: 'Esquerda',
|
||||
alignRight: 'Dereita',
|
||||
alignCenter: 'Centro',
|
||||
alignTop: 'Arriba',
|
||||
alignMiddle: 'Centro',
|
||||
alignBottom: 'Abaixo',
|
||||
invalidValue : 'Valor incorrecto.',
|
||||
invalidHeight: 'O alto debe ser un número.',
|
||||
invalidWidth: 'O largo debe ser un número.',
|
||||
invalidCssLength: 'O valor especificado para o campo «%1» debe ser un número positivo con ou sen unha unidade de medida CSS correcta (px, %, in, cm, mm, em, ex, pt, ou pc).',
|
||||
invalidHtmlLength: 'O valor especificado para o campo «%1» debe ser un número positivo con ou sen unha unidade de medida HTML correcta (px ou %).',
|
||||
invalidInlineStyle: 'O valor especificado no estilo en liña debe consistir nunha ou máis tuplas co formato «nome : valor», separadas por punto e coma.',
|
||||
cssLengthTooltip: 'Escriba un número para o valor en píxeles ou un número cunha unidade CSS correcta (px, %, in, cm, mm, em, ex, pt, ou pc).',
|
||||
|
||||
// Put the voice-only part of the label in the span.
|
||||
unavailable: '%1<span class="cke_accessibility">, non dispoñíbel</span>'
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user