mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-02-01 09:39:58 +09:00
17451666 * 사소한 문자열 수정;
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4855 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
cd25fe85f3
commit
5c846f4515
8 changed files with 422 additions and 422 deletions
|
|
@ -5,31 +5,31 @@
|
||||||
* @brief WYSIWYG Editor module's basic language pack
|
* @brief WYSIWYG Editor module's basic language pack
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$lang->editor = "WYSIWYG Editor";
|
$lang->editor = 'WYSIWYG Editor';
|
||||||
$lang->component_name = "Component";
|
$lang->component_name = 'Component';
|
||||||
$lang->component_version = "Version";
|
$lang->component_version = 'Version';
|
||||||
$lang->component_author = "Developer";
|
$lang->component_author = 'Developer';
|
||||||
$lang->component_link = "Link";
|
$lang->component_link = 'Link';
|
||||||
$lang->component_date = "Date";
|
$lang->component_date = 'Date';
|
||||||
$lang->component_license = 'License';
|
$lang->component_license = 'License';
|
||||||
$lang->component_history = 'Updates';
|
$lang->component_history = 'Updates';
|
||||||
$lang->component_description = "Description";
|
$lang->component_description = 'Description';
|
||||||
$lang->component_extra_vars = "Option Variable";
|
$lang->component_extra_vars = 'Option Variable';
|
||||||
$lang->component_grant = "Permission Setting";
|
$lang->component_grant = 'Permission Setting';
|
||||||
|
|
||||||
$lang->about_component = "About component";
|
$lang->about_component = 'About component';
|
||||||
$lang->about_component_grant = 'Selected group(s) will be able to use expanded components of editor.<br />(Leave them blank if you want all groups to have permission)';
|
$lang->about_component_grant = 'Selected group(s) will be able to use expanded components of editor.<br />(Leave them blank if you want all groups to have permission)';
|
||||||
$lang->about_component_mid = "Editor components can select targets.<br />(All targets will be selected when nothing is selected)";
|
$lang->about_component_mid = 'Editor components can select targets.<br />(All targets will be selected when nothing is selected)';
|
||||||
|
|
||||||
$lang->msg_component_is_not_founded = 'Cannot find editor component %s';
|
$lang->msg_component_is_not_founded = 'Cannot find editor component %s';
|
||||||
$lang->msg_component_is_inserted = 'Selected component is already inserted';
|
$lang->msg_component_is_inserted = 'Selected component is already inserted';
|
||||||
$lang->msg_component_is_first_order = 'Selected component is located at the first position';
|
$lang->msg_component_is_first_order = 'Selected component is located at the first position';
|
||||||
$lang->msg_component_is_last_order = 'Selected component is located at the last position';
|
$lang->msg_component_is_last_order = 'Selected component is located at the last position';
|
||||||
$lang->msg_load_saved_doc = "There is an automatically saved article. Do you wish to recover it?\nThe auto-saved draft will be discarded after saving current article";
|
$lang->msg_load_saved_doc = 'There is an automatically saved article. Do you wish to recover it?\nThe auto-saved draft will be discarded after saving current article';
|
||||||
$lang->msg_auto_saved = "Automatically Saved";
|
$lang->msg_auto_saved = 'Automatically Saved';
|
||||||
|
|
||||||
$lang->cmd_disable = "Inactive";
|
$lang->cmd_disable = 'Inactive';
|
||||||
$lang->cmd_enable = "Active";
|
$lang->cmd_enable = 'Active';
|
||||||
|
|
||||||
$lang->editor_skin = 'Editor Skin';
|
$lang->editor_skin = 'Editor Skin';
|
||||||
$lang->upload_file_grant = 'Permission for Uploading';
|
$lang->upload_file_grant = 'Permission for Uploading';
|
||||||
|
|
@ -52,49 +52,49 @@
|
||||||
$lang->edit->fontsize = 'Size';
|
$lang->edit->fontsize = 'Size';
|
||||||
$lang->edit->use_paragraph = 'Paragraph Function';
|
$lang->edit->use_paragraph = 'Paragraph Function';
|
||||||
$lang->edit->fontlist = array(
|
$lang->edit->fontlist = array(
|
||||||
"Arial",
|
'Arial',
|
||||||
"'Arial Black'",
|
'Arial Black',
|
||||||
"Tahoma",
|
'Tahoma',
|
||||||
"Verdana",
|
'Verdana',
|
||||||
"Sans-serif",
|
'Sans-serif',
|
||||||
"Serif",
|
'Serif',
|
||||||
"Monospace",
|
'Monospace',
|
||||||
"Cursive",
|
'Cursive',
|
||||||
"Fantasy",
|
'Fantasy',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->header = "Style";
|
$lang->edit->header = 'Style';
|
||||||
$lang->edit->header_list = array(
|
$lang->edit->header_list = array(
|
||||||
"h1" => "Subject 1",
|
'h1' => 'Subject 1',
|
||||||
"h2" => "Subject 2",
|
'h2' => 'Subject 2',
|
||||||
"h3" => "Subject 3",
|
'h3' => 'Subject 3',
|
||||||
"h4" => "Subject 4",
|
'h4' => 'Subject 4',
|
||||||
"h5" => "Subject 5",
|
'h5' => 'Subject 5',
|
||||||
"h6" => "Subject 6",
|
'h6' => 'Subject 6',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->submit = 'Submit';
|
$lang->edit->submit = 'Submit';
|
||||||
|
|
||||||
$lang->edit->help_remove_format = "Tags in selected area will be removed";
|
$lang->edit->help_remove_format = 'Tags in selected area will be removed';
|
||||||
$lang->edit->help_strike_through = "Strike will be on the words";
|
$lang->edit->help_strike_through = 'Strike will be on the words';
|
||||||
$lang->edit->help_align_full = "Align left and right";
|
$lang->edit->help_align_full = 'Align left and right';
|
||||||
|
|
||||||
$lang->edit->help_fontcolor = "Select font color";
|
$lang->edit->help_fontcolor = 'Select font color';
|
||||||
$lang->edit->help_fontbgcolor = "Select background color of font";
|
$lang->edit->help_fontbgcolor = 'Select background color of font';
|
||||||
$lang->edit->help_bold = "Make font bold";
|
$lang->edit->help_bold = 'Make font bold';
|
||||||
$lang->edit->help_italic = "Make italic font";
|
$lang->edit->help_italic = 'Make italic font';
|
||||||
$lang->edit->help_underline = "Underline font";
|
$lang->edit->help_underline = 'Underline font';
|
||||||
$lang->edit->help_strike = "Strike font";
|
$lang->edit->help_strike = 'Strike font';
|
||||||
$lang->edit->help_redo = "Redo";
|
$lang->edit->help_redo = 'Redo';
|
||||||
$lang->edit->help_undo = "Undo";
|
$lang->edit->help_undo = 'Undo';
|
||||||
$lang->edit->help_align_left = "Align left";
|
$lang->edit->help_align_left = 'Align left';
|
||||||
$lang->edit->help_align_center = "Align center";
|
$lang->edit->help_align_center = 'Align center';
|
||||||
$lang->edit->help_align_right = "Align right";
|
$lang->edit->help_align_right = 'Align right';
|
||||||
$lang->edit->help_add_indent = "Add indent";
|
$lang->edit->help_add_indent = 'Add indent';
|
||||||
$lang->edit->help_remove_indent = "Remove indent";
|
$lang->edit->help_remove_indent = 'Remove indent';
|
||||||
$lang->edit->help_list_number = "Apply number list";
|
$lang->edit->help_list_number = 'Apply number list';
|
||||||
$lang->edit->help_list_bullet = "Apply bullet list";
|
$lang->edit->help_list_bullet = 'Apply bullet list';
|
||||||
$lang->edit->help_use_paragrapth = "Press Ctrl+Enter to use paragraph. (Press Alt+S to submit)";
|
$lang->edit->help_use_paragrapth = 'Press Ctrl+Enter to use paragraph. (Press Alt+S to submit)';
|
||||||
|
|
||||||
$lang->edit->upload = 'Attachment';
|
$lang->edit->upload = 'Attachment';
|
||||||
$lang->edit->upload_file = 'Attach';
|
$lang->edit->upload_file = 'Attach';
|
||||||
|
|
|
||||||
|
|
@ -5,31 +5,31 @@
|
||||||
* @sumario Paquete del idioma español para el editor de WYSIWYG
|
* @sumario Paquete del idioma español para el editor de WYSIWYG
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$lang->editor = "Editor WYSIWYG";
|
$lang->editor = 'Editor WYSIWYG';
|
||||||
$lang->component_name = "Componente";
|
$lang->component_name = 'Componente';
|
||||||
$lang->component_version = "Versión";
|
$lang->component_version = 'Versión';
|
||||||
$lang->component_author = "Autor";
|
$lang->component_author = 'Autor';
|
||||||
$lang->component_link = "Enlace";
|
$lang->component_link = 'Enlace';
|
||||||
$lang->component_date = "Fecha";
|
$lang->component_date = 'Fecha';
|
||||||
$lang->component_license = 'License';
|
$lang->component_license = 'License';
|
||||||
$lang->component_history = "History";
|
$lang->component_history = 'History';
|
||||||
$lang->component_description = "Descripción";
|
$lang->component_description = 'Descripción';
|
||||||
$lang->component_extra_vars = "Varibles Extras";
|
$lang->component_extra_vars = 'Varibles Extras';
|
||||||
$lang->component_grant = "Ajuste de las atribuciones";
|
$lang->component_grant = 'Ajuste de las atribuciones';
|
||||||
|
|
||||||
$lang->about_component = "Presentación del componente";
|
$lang->about_component = 'Presentación del componente';
|
||||||
$lang->about_component_grant = 'Usted puede configurar el permiso de utilizar la ampliación de los componentes de editor.<br /> (Todo el mundo tendría permiso si no comprobado)';
|
$lang->about_component_grant = 'Usted puede configurar el permiso de utilizar la ampliación de los componentes de editor.<br /> (Todo el mundo tendría permiso si no comprobado)';
|
||||||
$lang->about_component_mid = "에디터 컴포넌트가 사용될 대상을 지정할 수 있습니다.<br />(모두 해제시 모든 대상에서 사용 가능합니다)";
|
$lang->about_component_mid = '에디터 컴포넌트가 사용될 대상을 지정할 수 있습니다.<br />(모두 해제시 모든 대상에서 사용 가능합니다)';
|
||||||
|
|
||||||
$lang->msg_component_is_not_founded = 'No se puede encontrar el componente del editor %s';
|
$lang->msg_component_is_not_founded = 'No se puede encontrar el componente del editor %s';
|
||||||
$lang->msg_component_is_inserted = 'El componente seleccionado ya esta insertado';
|
$lang->msg_component_is_inserted = 'El componente seleccionado ya esta insertado';
|
||||||
$lang->msg_component_is_first_order = 'El componente seleccionado se localiza en la primera posición';
|
$lang->msg_component_is_first_order = 'El componente seleccionado se localiza en la primera posición';
|
||||||
$lang->msg_component_is_last_order = 'El componente seleccionado se localiza en la última posición';
|
$lang->msg_component_is_last_order = 'El componente seleccionado se localiza en la última posición';
|
||||||
$lang->msg_load_saved_doc = "Existe un documento guardado automáticamente ¿desea recuperarlo ?\nDespués de guardar el documento escrito, el documento autoguardado sera eliminado.";
|
$lang->msg_load_saved_doc = 'Existe un documento guardado automáticamente ¿desea recuperarlo ?\nDespués de guardar el documento escrito, el documento autoguardado sera eliminado.';
|
||||||
$lang->msg_auto_saved = "Documento guardado automáticamente";
|
$lang->msg_auto_saved = 'Documento guardado automáticamente';
|
||||||
|
|
||||||
$lang->cmd_disable = "Desactivado";
|
$lang->cmd_disable = 'Desactivado';
|
||||||
$lang->cmd_enable = "activado";
|
$lang->cmd_enable = 'activado';
|
||||||
|
|
||||||
$lang->editor_skin = 'Editor de Cuidado de la Piel';
|
$lang->editor_skin = 'Editor de Cuidado de la Piel';
|
||||||
$lang->upload_file_grant = 'La autorización para cargar';
|
$lang->upload_file_grant = 'La autorización para cargar';
|
||||||
|
|
@ -52,45 +52,45 @@
|
||||||
$lang->edit->fontsize = 'Tamaño';
|
$lang->edit->fontsize = 'Tamaño';
|
||||||
$lang->edit->use_paragraph = 'Párrafo';
|
$lang->edit->use_paragraph = 'Párrafo';
|
||||||
$lang->edit->fontlist = array(
|
$lang->edit->fontlist = array(
|
||||||
"Arial",
|
'Arial',
|
||||||
"'Arial Black'",
|
'Arial Black',
|
||||||
"Tahoma",
|
'Tahoma',
|
||||||
"Verdana",
|
'Verdana',
|
||||||
"Sans-serif",
|
'Sans-serif',
|
||||||
"Serif",
|
'Serif',
|
||||||
"Monospace",
|
'Monospace',
|
||||||
"Cursive",
|
'Cursive',
|
||||||
"Fantasy",
|
'Fantasy',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->header = "Estilo";
|
$lang->edit->header = 'Estilo';
|
||||||
$lang->edit->header_list = array(
|
$lang->edit->header_list = array(
|
||||||
"h1" => "Título 1",
|
'h1' => 'Título 1',
|
||||||
"h2" => "Título 2",
|
'h2' => 'Título 2',
|
||||||
"h3" => "Título 3",
|
'h3' => 'Título 3',
|
||||||
"h4" => "Título 4",
|
'h4' => 'Título 4',
|
||||||
"h5" => "Título 5",
|
'h5' => 'Título 5',
|
||||||
"h6" => "Título 6",
|
'h6' => 'Título 6',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->submit = 'Confirmar';
|
$lang->edit->submit = 'Confirmar';
|
||||||
|
|
||||||
$lang->edit->help_fontcolor = "Selecciona el color de las letras";
|
$lang->edit->help_fontcolor = 'Selecciona el color de las letras';
|
||||||
$lang->edit->help_fontbgcolor = "Selecciona el color del fondo de la letras";
|
$lang->edit->help_fontbgcolor = 'Selecciona el color del fondo de la letras';
|
||||||
$lang->edit->help_bold = "Letra gruesa";
|
$lang->edit->help_bold = 'Letra gruesa';
|
||||||
$lang->edit->help_italic = "Letra cursiva";
|
$lang->edit->help_italic = 'Letra cursiva';
|
||||||
$lang->edit->help_underline = "Letra subrayada";
|
$lang->edit->help_underline = 'Letra subrayada';
|
||||||
$lang->edit->help_strike = "Letra con linea";
|
$lang->edit->help_strike = 'Letra con linea';
|
||||||
$lang->edit->help_redo = "Rehacer";
|
$lang->edit->help_redo = 'Rehacer';
|
||||||
$lang->edit->help_undo = "Deshacer";
|
$lang->edit->help_undo = 'Deshacer';
|
||||||
$lang->edit->help_align_left = "Margen izquierdo";
|
$lang->edit->help_align_left = 'Margen izquierdo';
|
||||||
$lang->edit->help_align_center = "Margen central";
|
$lang->edit->help_align_center = 'Margen central';
|
||||||
$lang->edit->help_align_right = "Margen derecho";
|
$lang->edit->help_align_right = 'Margen derecho';
|
||||||
$lang->edit->help_add_indent = "Anadir tabulación";
|
$lang->edit->help_add_indent = 'Anadir tabulación';
|
||||||
$lang->edit->help_remove_indent = "Quitar tabulación";
|
$lang->edit->help_remove_indent = 'Quitar tabulación';
|
||||||
$lang->edit->help_list_number = "Aplicar la lista con números";
|
$lang->edit->help_list_number = 'Aplicar la lista con números';
|
||||||
$lang->edit->help_list_bullet = "Aplicar la lista con símbolos";
|
$lang->edit->help_list_bullet = 'Aplicar la lista con símbolos';
|
||||||
$lang->edit->help_use_paragrapth = "Presiona Ctrl+Enter para usar el párrafo (Presiona Alt+S para guardar)";
|
$lang->edit->help_use_paragrapth = 'Presiona Ctrl+Enter para usar el párrafo (Presiona Alt+S para guardar)';
|
||||||
|
|
||||||
$lang->edit->upload = 'Adjuntar';
|
$lang->edit->upload = 'Adjuntar';
|
||||||
$lang->edit->upload_file = 'Archivo adjunto';
|
$lang->edit->upload_file = 'Archivo adjunto';
|
||||||
|
|
|
||||||
|
|
@ -5,31 +5,31 @@
|
||||||
* @brief Paquet du langage en français pour le module de Tel-tel Editeur
|
* @brief Paquet du langage en français pour le module de Tel-tel Editeur
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$lang->editor = "Tel-tel Editeur";
|
$lang->editor = 'Tel-tel Editeur';
|
||||||
$lang->component_name = "Composant";
|
$lang->component_name = 'Composant';
|
||||||
$lang->component_version = "Version";
|
$lang->component_version = 'Version';
|
||||||
$lang->component_author = "Développeur";
|
$lang->component_author = 'Développeur';
|
||||||
$lang->component_link = "Lien";
|
$lang->component_link = 'Lien';
|
||||||
$lang->component_date = "Jour de Création";
|
$lang->component_date = 'Jour de Création';
|
||||||
$lang->component_license = 'Licence';
|
$lang->component_license = 'Licence';
|
||||||
$lang->component_history = "Histoire";
|
$lang->component_history = 'Histoire';
|
||||||
$lang->component_description = "Description";
|
$lang->component_description = 'Description';
|
||||||
$lang->component_extra_vars = "Variables d'Option";
|
$lang->component_extra_vars = 'Variables d\'Option';
|
||||||
$lang->component_grant = "Configuration de la Permission";
|
$lang->component_grant = 'Configuration de la Permission';
|
||||||
|
|
||||||
$lang->about_component = "Sur le Composant";
|
$lang->about_component = 'Sur le Composant';
|
||||||
$lang->about_component_grant = 'Vous pouvez configurer la Permission d\'utiliser des composants additionnels de l\'Editeur.<br /> (Tout le monde aura la Permission si vous ne cochez rien)';
|
$lang->about_component_grant = 'Vous pouvez configurer la Permission d\'utiliser des composants additionnels de l\'Editeur.<br /> (Tout le monde aura la Permission si vous ne cochez rien)';
|
||||||
$lang->about_component_mid = "Vous pouvez désigner les objectifs auquels les composants s'appliquent<br />(Tous les objectifs auront la Permission quand rien n'est choisi.)";
|
$lang->about_component_mid = 'Vous pouvez désigner les objectifs auquels les composants s\'appliquent<br />(Tous les objectifs auront la Permission quand rien n\'est choisi.)';
|
||||||
|
|
||||||
$lang->msg_component_is_not_founded = 'Ne peut pas trouver Composant %s';
|
$lang->msg_component_is_not_founded = 'Ne peut pas trouver Composant %s';
|
||||||
$lang->msg_component_is_inserted = 'Composant choisi est déjà entré';
|
$lang->msg_component_is_inserted = 'Composant choisi est déjà entré';
|
||||||
$lang->msg_component_is_first_order = 'Composant choisi est localisé à la première position';
|
$lang->msg_component_is_first_order = 'Composant choisi est localisé à la première position';
|
||||||
$lang->msg_component_is_last_order = 'Composant choisi est localisé à la position dernière';
|
$lang->msg_component_is_last_order = 'Composant choisi est localisé à la position dernière';
|
||||||
$lang->msg_load_saved_doc = "Il y a un article conservé automatiquement. Voulez-vous le réstaurer?\nL\'esquisse conservé automatiquement va être débarrasser après conserver l\'article courant.";
|
$lang->msg_load_saved_doc = 'Il y a un article conservé automatiquement. Voulez-vous le réstaurer?\nL\'esquisse conservé automatiquement va être débarrasser après conserver l\'article courant.';
|
||||||
$lang->msg_auto_saved = "Conservé automatiquement";
|
$lang->msg_auto_saved = 'Conservé automatiquement';
|
||||||
|
|
||||||
$lang->cmd_disable = "Invalider";
|
$lang->cmd_disable = 'Invalider';
|
||||||
$lang->cmd_enable = "Valider";
|
$lang->cmd_enable = 'Valider';
|
||||||
|
|
||||||
$lang->editor_skin = 'Habillage de l\'Editeur';
|
$lang->editor_skin = 'Habillage de l\'Editeur';
|
||||||
$lang->upload_file_grant = 'Permission de télécharger(téléverser) ';
|
$lang->upload_file_grant = 'Permission de télécharger(téléverser) ';
|
||||||
|
|
@ -52,49 +52,49 @@
|
||||||
$lang->edit->fontsize = 'Mesure';
|
$lang->edit->fontsize = 'Mesure';
|
||||||
$lang->edit->use_paragraph = 'Fonctions sur Paragraphe';
|
$lang->edit->use_paragraph = 'Fonctions sur Paragraphe';
|
||||||
$lang->edit->fontlist = array(
|
$lang->edit->fontlist = array(
|
||||||
"Arial",
|
'Arial',
|
||||||
"'Arial Black'",
|
'Arial Black',
|
||||||
"Tahoma",
|
'Tahoma',
|
||||||
"Verdana",
|
'Verdana',
|
||||||
"Sans-serif",
|
'Sans-serif',
|
||||||
"Serif",
|
'Serif',
|
||||||
"Monospace",
|
'Monospace',
|
||||||
"Cursive",
|
'Cursive',
|
||||||
"Fantasy",
|
'Fantasy',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->header = "Style";
|
$lang->edit->header = 'Style';
|
||||||
$lang->edit->header_list = array(
|
$lang->edit->header_list = array(
|
||||||
"h1" => "Titre 1",
|
'h1' => 'Titre 1',
|
||||||
"h2" => "Titre 2",
|
'h2' => 'Titre 2',
|
||||||
"h3" => "Titre 3",
|
'h3' => 'Titre 3',
|
||||||
"h4" => "Titre 4",
|
'h4' => 'Titre 4',
|
||||||
"h5" => "Titre 5",
|
'h5' => 'Titre 5',
|
||||||
"h6" => "Titre 6",
|
'h6' => 'Titre 6',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->submit = 'Soumettre';
|
$lang->edit->submit = 'Soumettre';
|
||||||
|
|
||||||
$lang->edit->help_remove_format = "Supprimer les balises dans l\'endroit sélectionné";
|
$lang->edit->help_remove_format = 'Supprimer les balises dans l\'endroit sélectionné';
|
||||||
$lang->edit->help_strike_through = "Représenter la ligne d\'annulation sur les lettres.";
|
$lang->edit->help_strike_through = 'Représenter la ligne d\'annulation sur les lettres.';
|
||||||
$lang->edit->help_align_full = "Aligner pleinement selon largeur";
|
$lang->edit->help_align_full = 'Aligner pleinement selon largeur';
|
||||||
|
|
||||||
$lang->edit->help_fontcolor = "Désigner la couleur de la Police de caractères";
|
$lang->edit->help_fontcolor = 'Désigner la couleur de la Police de caractères';
|
||||||
$lang->edit->help_fontbgcolor = "Désigner la couleur de l\'arrière-plan de la Police de caractères.";
|
$lang->edit->help_fontbgcolor = 'Désigner la couleur de l\'arrière-plan de la Police de caractères.';
|
||||||
$lang->edit->help_bold = "Caractère gras";
|
$lang->edit->help_bold = 'Caractère gras';
|
||||||
$lang->edit->help_italic = "Caractère italique";
|
$lang->edit->help_italic = 'Caractère italique';
|
||||||
$lang->edit->help_underline = "Caractère souligné";
|
$lang->edit->help_underline = 'Caractère souligné';
|
||||||
$lang->edit->help_strike = "Caractère biffé";
|
$lang->edit->help_strike = 'Caractère biffé';
|
||||||
$lang->edit->help_redo = "Réfaire";
|
$lang->edit->help_redo = 'Réfaire';
|
||||||
$lang->edit->help_undo = "Annuler";
|
$lang->edit->help_undo = 'Annuler';
|
||||||
$lang->edit->help_align_left = "Aligner à gauche";
|
$lang->edit->help_align_left = 'Aligner à gauche';
|
||||||
$lang->edit->help_align_center = "Aligner centr";
|
$lang->edit->help_align_center = 'Aligner centr';
|
||||||
$lang->edit->help_align_right = "Aligner droite";
|
$lang->edit->help_align_right = 'Aligner droite';
|
||||||
$lang->edit->help_add_indent = "Ajouter un Rentré";
|
$lang->edit->help_add_indent = 'Ajouter un Rentré';
|
||||||
$lang->edit->help_remove_indent = "Enlever un Rentré";
|
$lang->edit->help_remove_indent = 'Enlever un Rentré';
|
||||||
$lang->edit->help_list_number = "Appliquer la liste numroté";
|
$lang->edit->help_list_number = 'Appliquer la liste numroté';
|
||||||
$lang->edit->help_list_bullet = "Appliquer la liste à puces";
|
$lang->edit->help_list_bullet = 'Appliquer la liste à puces';
|
||||||
$lang->edit->help_use_paragrapth = "Appuyez Ctrl+Enter pour séparer les paragraphe. (Appuyez Alt+S pour conserver)";
|
$lang->edit->help_use_paragrapth = 'Appuyez Ctrl+Enter pour séparer les paragraphe. (Appuyez Alt+S pour conserver)';
|
||||||
|
|
||||||
$lang->edit->upload = 'Attacher';
|
$lang->edit->upload = 'Attacher';
|
||||||
$lang->edit->upload_file = 'Attacher un(des) Fichier(s)';
|
$lang->edit->upload_file = 'Attacher un(des) Fichier(s)';
|
||||||
|
|
|
||||||
|
|
@ -5,31 +5,31 @@
|
||||||
* @brief ウィジウィグエディター(editor)モジュールの基本言語パッケージ
|
* @brief ウィジウィグエディター(editor)モジュールの基本言語パッケージ
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$lang->editor = "ウイジウイグエディター";
|
$lang->editor = 'ウイジウイグエディター';
|
||||||
$lang->component_name = "コンポーネント";
|
$lang->component_name = 'コンポーネント';
|
||||||
$lang->component_version = "バージョン";
|
$lang->component_version = 'バージョン';
|
||||||
$lang->component_author = "作者";
|
$lang->component_author = '作者';
|
||||||
$lang->component_link = "リンク";
|
$lang->component_link = 'リンク';
|
||||||
$lang->component_date = "作成日";
|
$lang->component_date = '作成日';
|
||||||
$lang->component_license = 'ライセンス';
|
$lang->component_license = 'ライセンス';
|
||||||
$lang->component_history = "変更履歴";
|
$lang->component_history = '変更履歴';
|
||||||
$lang->component_description = "説明";
|
$lang->component_description = '説明';
|
||||||
$lang->component_extra_vars = "設定変数";
|
$lang->component_extra_vars = '設定変数';
|
||||||
$lang->component_grant = "権限設定";
|
$lang->component_grant = '権限設定';
|
||||||
|
|
||||||
$lang->about_component = "コンポーネント情報";
|
$lang->about_component = 'コンポーネント情報';
|
||||||
$lang->about_component_grant = '基本コンポーネント以外の拡張コンポーネント機能が利用可能な権限の設定が出来ます。<br />(選択なしの場合、誰でも利用可能)';
|
$lang->about_component_grant = '基本コンポーネント以外の拡張コンポーネント機能が利用可能な権限の設定が出来ます。<br />(選択なしの場合、誰でも利用可能)';
|
||||||
$lang->about_component_mid = "エディターコンポーネントが使われる対象を指定します。<br />(選択なしの場合、全ての対象で利用可能)";
|
$lang->about_component_mid = 'エディターコンポーネントが使われる対象を指定します。<br />(選択なしの場合、全ての対象で利用可能)';
|
||||||
|
|
||||||
$lang->msg_component_is_not_founded = '%s エディターのコンポーネントが見つかりません。';
|
$lang->msg_component_is_not_founded = '%s エディターのコンポーネントが見つかりません。';
|
||||||
$lang->msg_component_is_inserted = '選択されたコンポーネントは既に入力されています。';
|
$lang->msg_component_is_inserted = '選択されたコンポーネントは既に入力されています。';
|
||||||
$lang->msg_component_is_first_order = '選択されたコンポーネントは最初に位置しています。';
|
$lang->msg_component_is_first_order = '選択されたコンポーネントは最初に位置しています。';
|
||||||
$lang->msg_component_is_last_order = '選択されたコンポーネントは最後に位置しています。';
|
$lang->msg_component_is_last_order = '選択されたコンポーネントは最後に位置しています。';
|
||||||
$lang->msg_load_saved_doc = "自動保存された書き込みがあります。復旧しますか?\n書き終わってから登録すると前の自動保存データは削除されます。";
|
$lang->msg_load_saved_doc = '自動保存された書き込みがあります。復旧しますか?\n書き終わってから登録すると前の自動保存データは削除されます。';
|
||||||
$lang->msg_auto_saved = "自動保存されました。";
|
$lang->msg_auto_saved = '自動保存されました。';
|
||||||
|
|
||||||
$lang->cmd_disable = "未使用";
|
$lang->cmd_disable = '未使用';
|
||||||
$lang->cmd_enable = "使用";
|
$lang->cmd_enable = '使用';
|
||||||
|
|
||||||
$lang->editor_skin = 'エディタースキン';
|
$lang->editor_skin = 'エディタースキン';
|
||||||
$lang->upload_file_grant = 'ファイル添付権限';
|
$lang->upload_file_grant = 'ファイル添付権限';
|
||||||
|
|
@ -52,53 +52,53 @@
|
||||||
$lang->edit->fontsize = 'フォントサイズ';
|
$lang->edit->fontsize = 'フォントサイズ';
|
||||||
$lang->edit->use_paragraph = '段落機能';
|
$lang->edit->use_paragraph = '段落機能';
|
||||||
$lang->edit->fontlist = array(
|
$lang->edit->fontlist = array(
|
||||||
"MS Pゴシック",
|
'MS Pゴシック',
|
||||||
"MS P明朝",
|
'MS P明朝',
|
||||||
"Osaka-等幅",
|
'Osaka-等幅',
|
||||||
"ヒラギノ角ゴ Pro W3",
|
'ヒラギノ角ゴ Pro W3',
|
||||||
"Arial",
|
'Arial',
|
||||||
"'Arial Black'",
|
'Arial Black',
|
||||||
"Tahoma",
|
'Tahoma',
|
||||||
"Verdana",
|
'Verdana',
|
||||||
"Sans-serif",
|
'Sans-serif',
|
||||||
"Serif",
|
'Serif',
|
||||||
"Monospace",
|
'Monospace',
|
||||||
"Cursive",
|
'Cursive',
|
||||||
"Fantasy",
|
'Fantasy',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->header = "見出し";
|
$lang->edit->header = '見出し';
|
||||||
$lang->edit->header_list = array(
|
$lang->edit->header_list = array(
|
||||||
"h1" => "見出し1",
|
'h1' => '見出し1',
|
||||||
"h2" => "見出し2",
|
'h2' => '見出し2',
|
||||||
"h3" => "見出し3",
|
'h3' => '見出し3',
|
||||||
"h4" => "見出し4",
|
'h4' => '見出し4',
|
||||||
"h5" => "見出し5",
|
'h5' => '見出し5',
|
||||||
"h6" => "見出し6",
|
'h6' => '見出し6',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->submit = '送信';
|
$lang->edit->submit = '送信';
|
||||||
|
|
||||||
$lang->edit->help_remove_format = "選択領域の中のタグを消します。";
|
$lang->edit->help_remove_format = '選択領域の中のタグを消します。';
|
||||||
$lang->edit->help_strike_through = "テキストに取り消し線を表示します。";
|
$lang->edit->help_strike_through = 'テキストに取り消し線を表示します。';
|
||||||
$lang->edit->help_align_full = "左右の余白に合わせて文字列を配置します。";
|
$lang->edit->help_align_full = '左右の余白に合わせて文字列を配置します。';
|
||||||
|
|
||||||
$lang->edit->help_fontcolor = "テキストの色を指定します。";
|
$lang->edit->help_fontcolor = 'テキストの色を指定します。';
|
||||||
$lang->edit->help_fontbgcolor = "テキストの背景色を指定します。";
|
$lang->edit->help_fontbgcolor = 'テキストの背景色を指定します。';
|
||||||
$lang->edit->help_bold = "テキストを太字に指定します。";
|
$lang->edit->help_bold = 'テキストを太字に指定します。';
|
||||||
$lang->edit->help_italic = "テキストを斜体にします。";
|
$lang->edit->help_italic = 'テキストを斜体にします。';
|
||||||
$lang->edit->help_underline = "テキストに下線(アンダーライン)を引きます。";
|
$lang->edit->help_underline = 'テキストに下線(アンダーライン)を引きます。';
|
||||||
$lang->edit->help_strike = "取り消し線を引きます。";
|
$lang->edit->help_strike = '取り消し線を引きます。';
|
||||||
$lang->edit->help_redo = "繰り返し";
|
$lang->edit->help_redo = '繰り返し';
|
||||||
$lang->edit->help_undo = "元に戻す";
|
$lang->edit->help_undo = '元に戻す';
|
||||||
$lang->edit->help_align_left = "テキストを左揃えで表示します。";
|
$lang->edit->help_align_left = 'テキストを左揃えで表示します。';
|
||||||
$lang->edit->help_align_center = "テキストを中央揃えで表示します。";
|
$lang->edit->help_align_center = 'テキストを中央揃えで表示します。';
|
||||||
$lang->edit->help_align_right = "テキストを右揃えで表示します。";
|
$lang->edit->help_align_right = 'テキストを右揃えで表示します。';
|
||||||
$lang->edit->help_add_indent = "インデントを増やします。";
|
$lang->edit->help_add_indent = 'インデントを増やします。';
|
||||||
$lang->edit->help_remove_indent = "インデントを減らします。";
|
$lang->edit->help_remove_indent = 'インデントを減らします。';
|
||||||
$lang->edit->help_list_number = "段落番号";
|
$lang->edit->help_list_number = '段落番号';
|
||||||
$lang->edit->help_list_bullet = "箇条書き";
|
$lang->edit->help_list_bullet = '箇条書き';
|
||||||
$lang->edit->help_use_paragrapth = "段落機能を使用する場合は、「Ctrl+Enter」を押します(書き終わった後、「Alt+S」を押すと保存されます)。";
|
$lang->edit->help_use_paragrapth = '段落機能を使用する場合は、「Ctrl+Enter」を押します(書き終わった後、「Alt+S」を押すと保存されます)。';
|
||||||
|
|
||||||
$lang->edit->upload = '添付';
|
$lang->edit->upload = '添付';
|
||||||
$lang->edit->upload_file = 'ファイル添付';
|
$lang->edit->upload_file = 'ファイル添付';
|
||||||
|
|
|
||||||
|
|
@ -5,21 +5,21 @@
|
||||||
* @brief 위지윅에디터(editor) 모듈의 기본 언어팩
|
* @brief 위지윅에디터(editor) 모듈의 기본 언어팩
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$lang->editor = "위지윅 에디터";
|
$lang->editor = '위지윅 에디터';
|
||||||
$lang->component_name = "컴포넌트";
|
$lang->component_name = '컴포넌트';
|
||||||
$lang->component_version = "버전";
|
$lang->component_version = '버전';
|
||||||
$lang->component_author = "제작자 ";
|
$lang->component_author = '제작자 ';
|
||||||
$lang->component_link = "링크";
|
$lang->component_link = '링크';
|
||||||
$lang->component_date = "제작일";
|
$lang->component_date = '제작일';
|
||||||
$lang->component_license = '라이선스';
|
$lang->component_license = '라이선스';
|
||||||
$lang->component_history = '변경 이력';
|
$lang->component_history = '변경 이력';
|
||||||
$lang->component_description = "설명";
|
$lang->component_description = '설명';
|
||||||
$lang->component_extra_vars = "설정 변수";
|
$lang->component_extra_vars = '설정 변수';
|
||||||
$lang->component_grant = "권한설정";
|
$lang->component_grant = '권한설정';
|
||||||
|
|
||||||
$lang->about_component = "컴포넌트 소개";
|
$lang->about_component = '컴포넌트 소개';
|
||||||
$lang->about_component_grant = '기본 컴포넌트외의 확장 컴포넌트 기능을 사용할 수 있는 권한을 지정할 수 있습니다.<br /> (모두 해제시 아무나 사용 가능합니다)';
|
$lang->about_component_grant = '기본 컴포넌트외의 확장 컴포넌트 기능을 사용할 수 있는 권한을 지정할 수 있습니다.<br /> (모두 해제시 아무나 사용 가능합니다)';
|
||||||
$lang->about_component_mid = "에디터 컴포넌트가 사용될 대상을 지정할 수 있습니다.<br />(모두 해제시 모든 대상에서 사용 가능합니다)";
|
$lang->about_component_mid = '에디터 컴포넌트가 사용될 대상을 지정할 수 있습니다.<br />(모두 해제시 모든 대상에서 사용 가능합니다)';
|
||||||
|
|
||||||
$lang->msg_component_is_not_founded = '%s 에디터 컴포넌트를 찾을 수 없습니다';
|
$lang->msg_component_is_not_founded = '%s 에디터 컴포넌트를 찾을 수 없습니다';
|
||||||
$lang->msg_component_is_inserted = '선택하신 컴포넌트는 이미 입력되어 있습니다';
|
$lang->msg_component_is_inserted = '선택하신 컴포넌트는 이미 입력되어 있습니다';
|
||||||
|
|
@ -52,52 +52,52 @@
|
||||||
$lang->edit->fontsize = '크기';
|
$lang->edit->fontsize = '크기';
|
||||||
$lang->edit->use_paragraph = '문단기능';
|
$lang->edit->use_paragraph = '문단기능';
|
||||||
$lang->edit->fontlist = array(
|
$lang->edit->fontlist = array(
|
||||||
"Dotum",
|
'Dotum',
|
||||||
"Gulim",
|
'Gulim',
|
||||||
"Batang",
|
'Batang',
|
||||||
"Arial",
|
'Arial',
|
||||||
"'Arial Black'",
|
'Arial Black',
|
||||||
"Tahoma",
|
'Tahoma',
|
||||||
"Verdana",
|
'Verdana',
|
||||||
"Sans-serif",
|
'Sans-serif',
|
||||||
"Serif",
|
'Serif',
|
||||||
"Monospace",
|
'Monospace',
|
||||||
"Cursive",
|
'Cursive',
|
||||||
"Fantasy",
|
'Fantasy',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->header = "형식";
|
$lang->edit->header = '형식';
|
||||||
$lang->edit->header_list = array(
|
$lang->edit->header_list = array(
|
||||||
"h1" => "제목 1",
|
'h1' => '제목 1',
|
||||||
"h2" => "제목 2",
|
'h2' => '제목 2',
|
||||||
"h3" => "제목 3",
|
'h3' => '제목 3',
|
||||||
"h4" => "제목 4",
|
'h4' => '제목 4',
|
||||||
"h5" => "제목 5",
|
'h5' => '제목 5',
|
||||||
"h6" => "제목 6",
|
'h6' => '제목 6',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->submit = '확인';
|
$lang->edit->submit = '확인';
|
||||||
|
|
||||||
$lang->edit->help_remove_format = "선택된 영역 내의 태그를 지웁니다";
|
$lang->edit->help_remove_format = '선택된 영역 내의 태그를 지웁니다';
|
||||||
$lang->edit->help_strike_through = "글자에 취소선을 표시합니다";
|
$lang->edit->help_strike_through = '글자에 취소선을 표시합니다';
|
||||||
$lang->edit->help_align_full = "좌우 폭에 맞게 정렬을 합니다";
|
$lang->edit->help_align_full = '좌우 폭에 맞게 정렬을 합니다';
|
||||||
|
|
||||||
$lang->edit->help_fontcolor = "글자의 색상을 지정합니다";
|
$lang->edit->help_fontcolor = '글자의 색상을 지정합니다';
|
||||||
$lang->edit->help_fontbgcolor = "글자의 배경색상을 지정합니다";
|
$lang->edit->help_fontbgcolor = '글자의 배경색상을 지정합니다';
|
||||||
$lang->edit->help_bold = "글자를 진하게 합니다";
|
$lang->edit->help_bold = '글자를 진하게 합니다';
|
||||||
$lang->edit->help_italic = "글자를 기울이게 합니다";
|
$lang->edit->help_italic = '글자를 기울이게 합니다';
|
||||||
$lang->edit->help_underline = "밑줄을 긋습니다";
|
$lang->edit->help_underline = '밑줄을 긋습니다';
|
||||||
$lang->edit->help_strike = "취소선을 긋습니다";
|
$lang->edit->help_strike = '취소선을 긋습니다';
|
||||||
$lang->edit->help_redo = "다음 동작으로 돌아갑니다";
|
$lang->edit->help_redo = '다음 동작으로 돌아갑니다';
|
||||||
$lang->edit->help_undo = "이전 동작으로 돌아갑니다";
|
$lang->edit->help_undo = '이전 동작으로 돌아갑니다';
|
||||||
$lang->edit->help_align_left = "왼쪽 정렬을 합니다";
|
$lang->edit->help_align_left = '왼쪽 정렬을 합니다';
|
||||||
$lang->edit->help_align_center = "가운데 정렬을 합니다";
|
$lang->edit->help_align_center = '가운데 정렬을 합니다';
|
||||||
$lang->edit->help_align_right = "오른쪽 정렬을 합니다";
|
$lang->edit->help_align_right = '오른쪽 정렬을 합니다';
|
||||||
$lang->edit->help_add_indent = "들여쓰기를 합니다";
|
$lang->edit->help_add_indent = '들여쓰기를 합니다';
|
||||||
$lang->edit->help_remove_indent = "들여쓰기를 제거합니다";
|
$lang->edit->help_remove_indent = '들여쓰기를 제거합니다';
|
||||||
$lang->edit->help_list_number = "숫자로된 목록을 적용합니다";
|
$lang->edit->help_list_number = '숫자로된 목록을 적용합니다';
|
||||||
$lang->edit->help_list_bullet = "기호로된 목록을 적용합니다";
|
$lang->edit->help_list_bullet = '기호로된 목록을 적용합니다';
|
||||||
$lang->edit->help_use_paragrapth = "문단 나누기를 하시려면 ctrl-엔터를 누르시면 됩니다. (글 작성완료후 alt-S를 누르면 저장이 됩니다)";
|
$lang->edit->help_use_paragrapth = '문단 나누기를 하시려면 ctrl-엔터를 누르시면 됩니다. (글 작성완료후 alt-S를 누르면 저장이 됩니다)';
|
||||||
|
|
||||||
$lang->edit->upload = '첨부';
|
$lang->edit->upload = '첨부';
|
||||||
$lang->edit->upload_file = '파일 첨부';
|
$lang->edit->upload_file = '파일 첨부';
|
||||||
|
|
|
||||||
|
|
@ -5,31 +5,31 @@
|
||||||
* @brief Russian basic language pack for Zeroboard XE
|
* @brief Russian basic language pack for Zeroboard XE
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$lang->editor = "WYSIWYG-Редактор";
|
$lang->editor = 'WYSIWYG-Редактор';
|
||||||
$lang->component_name = "Компонент";
|
$lang->component_name = 'Компонент';
|
||||||
$lang->component_version = "Версия";
|
$lang->component_version = 'Версия';
|
||||||
$lang->component_author = "Разработчик";
|
$lang->component_author = 'Разработчик';
|
||||||
$lang->component_link = "Ссылка";
|
$lang->component_link = 'Ссылка';
|
||||||
$lang->component_date = "Дата";
|
$lang->component_date = 'Дата';
|
||||||
$lang->component_license = 'License';
|
$lang->component_license = 'License';
|
||||||
$lang->component_history = "History";
|
$lang->component_history = 'History';
|
||||||
$lang->component_description = "Описание";
|
$lang->component_description = 'Описание';
|
||||||
$lang->component_extra_vars = "Экстра перем.";
|
$lang->component_extra_vars = 'Экстра перем.';
|
||||||
$lang->component_grant = "Настройки прав доступа";
|
$lang->component_grant = 'Настройки прав доступа';
|
||||||
|
|
||||||
$lang->about_component = "О компоненте";
|
$lang->about_component = 'О компоненте';
|
||||||
$lang->about_component_grant = "Только выбранным группам позволено использование.<br /> (Каждый может использовать его, если режим выключен)";
|
$lang->about_component_grant = 'Только выбранным группам позволено использование.<br /> (Каждый может использовать его, если режим выключен)';
|
||||||
$lang->about_component_mid = "에디터 컴포넌트가 사용될 대상을 지정할 수 있습니다.<br />(모두 해제시 모든 대상에서 사용 가능합니다)";
|
$lang->about_component_mid = '에디터 컴포넌트가 사용될 대상을 지정할 수 있습니다.<br />(모두 해제시 모든 대상에서 사용 가능합니다)';
|
||||||
|
|
||||||
$lang->msg_component_is_not_founded = 'Невозможно найти компонент редактора %s';
|
$lang->msg_component_is_not_founded = 'Невозможно найти компонент редактора %s';
|
||||||
$lang->msg_component_is_inserted = 'Выбранный компонент уже присутствует';
|
$lang->msg_component_is_inserted = 'Выбранный компонент уже присутствует';
|
||||||
$lang->msg_component_is_first_order = 'Выбранный компонент находится на первой позиции';
|
$lang->msg_component_is_first_order = 'Выбранный компонент находится на первой позиции';
|
||||||
$lang->msg_component_is_last_order = 'Выбранный компонент находится на последней позиции';
|
$lang->msg_component_is_last_order = 'Выбранный компонент находится на последней позиции';
|
||||||
$lang->msg_load_saved_doc = "Существует автоматически сохраненная статья. Хотите ли Вы ее восстановить?\nАвтоматически сохраненный черновик будет отменен после сохранения текущей статьи";
|
$lang->msg_load_saved_doc = 'Существует автоматически сохраненная статья. Хотите ли Вы ее восстановить?\nАвтоматически сохраненный черновик будет отменен после сохранения текущей статьи';
|
||||||
$lang->msg_auto_saved = "Автоматически сохранено";
|
$lang->msg_auto_saved = 'Автоматически сохранено';
|
||||||
|
|
||||||
$lang->cmd_disable = "Неавтивно";
|
$lang->cmd_disable = 'Неавтивно';
|
||||||
$lang->cmd_enable = "Активно";
|
$lang->cmd_enable = 'Активно';
|
||||||
|
|
||||||
$lang->editor_skin = '에디터 스킨';
|
$lang->editor_skin = '에디터 스킨';
|
||||||
$lang->upload_file_grant = '파일 첨부 권한';
|
$lang->upload_file_grant = '파일 첨부 권한';
|
||||||
|
|
@ -52,45 +52,45 @@
|
||||||
$lang->edit->fontsize = 'Размер';
|
$lang->edit->fontsize = 'Размер';
|
||||||
$lang->edit->use_paragraph = 'Функции параграфа';
|
$lang->edit->use_paragraph = 'Функции параграфа';
|
||||||
$lang->edit->fontlist = array(
|
$lang->edit->fontlist = array(
|
||||||
"Arial",
|
'Arial',
|
||||||
"'Arial Black'",
|
'Arial Black',
|
||||||
"Tahoma",
|
'Tahoma',
|
||||||
"Verdana",
|
'Verdana',
|
||||||
"Sans-serif",
|
'Sans-serif',
|
||||||
"Serif",
|
'Serif',
|
||||||
"Monospace",
|
'Monospace',
|
||||||
"Cursive",
|
'Cursive',
|
||||||
"Fantasy",
|
'Fantasy',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->header = "Стиль";
|
$lang->edit->header = 'Стиль';
|
||||||
$lang->edit->header_list = array(
|
$lang->edit->header_list = array(
|
||||||
"h1" => "Заголовок 1",
|
'h1' => 'Заголовок 1',
|
||||||
"h2" => "Заголовок 2",
|
'h2' => 'Заголовок 2',
|
||||||
"h3" => "Заголовок 3",
|
'h3' => 'Заголовок 3',
|
||||||
"h4" => "Заголовок 4",
|
'h4' => 'Заголовок 4',
|
||||||
"h5" => "Заголовок 5",
|
'h5' => 'Заголовок 5',
|
||||||
"h6" => "Заголовок 6",
|
'h6' => 'Заголовок 6',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->submit = 'Принять';
|
$lang->edit->submit = 'Принять';
|
||||||
|
|
||||||
$lang->edit->help_fontcolor = "Выберать цвет шрифта";
|
$lang->edit->help_fontcolor = 'Выберать цвет шрифта';
|
||||||
$lang->edit->help_fontbgcolor = "Выберать цвет фона шрифта";
|
$lang->edit->help_fontbgcolor = 'Выберать цвет фона шрифта';
|
||||||
$lang->edit->help_bold = "Сделать шрифт жирным";
|
$lang->edit->help_bold = 'Сделать шрифт жирным';
|
||||||
$lang->edit->help_italic = "Сделать шрифт наклонным";
|
$lang->edit->help_italic = 'Сделать шрифт наклонным';
|
||||||
$lang->edit->help_underline = "Сделать шрифт подчеркнутым";
|
$lang->edit->help_underline = 'Сделать шрифт подчеркнутым';
|
||||||
$lang->edit->help_strike = "Сделать шрифт зачеркнутым";
|
$lang->edit->help_strike = 'Сделать шрифт зачеркнутым';
|
||||||
$lang->edit->help_redo = "Восстановить отмененное";
|
$lang->edit->help_redo = 'Восстановить отмененное';
|
||||||
$lang->edit->help_undo = "Отмена";
|
$lang->edit->help_undo = 'Отмена';
|
||||||
$lang->edit->help_align_left = "Выровнять по левому краю";
|
$lang->edit->help_align_left = 'Выровнять по левому краю';
|
||||||
$lang->edit->help_align_center = "Выровнять по центру";
|
$lang->edit->help_align_center = 'Выровнять по центру';
|
||||||
$lang->edit->help_align_right = "Выровнять по правому краю";
|
$lang->edit->help_align_right = 'Выровнять по правому краю';
|
||||||
$lang->edit->help_add_indent = "Добавить отступ";
|
$lang->edit->help_add_indent = 'Добавить отступ';
|
||||||
$lang->edit->help_remove_indent = "Удалить отступ";
|
$lang->edit->help_remove_indent = 'Удалить отступ';
|
||||||
$lang->edit->help_list_number = "Применить числовой список";
|
$lang->edit->help_list_number = 'Применить числовой список';
|
||||||
$lang->edit->help_list_bullet = "Применить маркированный список";
|
$lang->edit->help_list_bullet = 'Применить маркированный список';
|
||||||
$lang->edit->help_use_paragrapth = "Нажмите Ctrl+Enter, чтобы отметить параграф. (Нажмите Alt+S , чтобы сохранить)";
|
$lang->edit->help_use_paragrapth = 'Нажмите Ctrl+Enter, чтобы отметить параграф. (Нажмите Alt+S , чтобы сохранить)';
|
||||||
|
|
||||||
$lang->edit->upload = 'Вложение';
|
$lang->edit->upload = 'Вложение';
|
||||||
$lang->edit->upload_file = 'Вложить';
|
$lang->edit->upload_file = 'Вложить';
|
||||||
|
|
|
||||||
|
|
@ -5,31 +5,31 @@
|
||||||
* @brief 网页编辑器(editor) 模块语言包
|
* @brief 网页编辑器(editor) 模块语言包
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$lang->editor = "网页编辑器";
|
$lang->editor = '网页编辑器';
|
||||||
$lang->component_name = "组件";
|
$lang->component_name = '组件';
|
||||||
$lang->component_version = "版本";
|
$lang->component_version = '版本';
|
||||||
$lang->component_author = "作者";
|
$lang->component_author = '作者';
|
||||||
$lang->component_link = "链接";
|
$lang->component_link = '链接';
|
||||||
$lang->component_date = "编写日期";
|
$lang->component_date = '编写日期';
|
||||||
$lang->component_license = '版权';
|
$lang->component_license = '版权';
|
||||||
$lang->component_history = "更新日志";
|
$lang->component_history = '更新日志';
|
||||||
$lang->component_description = "说明";
|
$lang->component_description = '说明';
|
||||||
$lang->component_extra_vars = "变数设置";
|
$lang->component_extra_vars = '变数设置';
|
||||||
$lang->component_grant = "权限设置";
|
$lang->component_grant = '权限设置';
|
||||||
|
|
||||||
$lang->about_component = "组件简介";
|
$lang->about_component = '组件简介';
|
||||||
$lang->about_component_grant = '可以设置除默认组件外的扩展组件使用权限<br />(全部解除时任何用户都可以使用)。';
|
$lang->about_component_grant = '可以设置除默认组件外的扩展组件使用权限<br />(全部解除时任何用户都可以使用)。';
|
||||||
$lang->about_component_mid = "可以指定使用编辑器组件的对象。<br />(全部解除时任何用户都可以使用)。";
|
$lang->about_component_mid = '可以指定使用编辑器组件的对象。<br />(全部解除时任何用户都可以使用)。';
|
||||||
|
|
||||||
$lang->msg_component_is_not_founded = '找不到%s 组件说明!';
|
$lang->msg_component_is_not_founded = '找不到%s 组件说明!';
|
||||||
$lang->msg_component_is_inserted = '您选择的组件已插入!';
|
$lang->msg_component_is_inserted = '您选择的组件已插入!';
|
||||||
$lang->msg_component_is_first_order = '您选择的组件已到最上端位置!';
|
$lang->msg_component_is_first_order = '您选择的组件已到最上端位置!';
|
||||||
$lang->msg_component_is_last_order = '您选择的组件已到最下端位置!';
|
$lang->msg_component_is_last_order = '您选择的组件已到最下端位置!';
|
||||||
$lang->msg_load_saved_doc = "有自动保存的内容, 确定要恢复吗?\n保存内容后,自动保存的文本将会被删除。";
|
$lang->msg_load_saved_doc = '有自动保存的内容, 确定要恢复吗?\n保存内容后,自动保存的文本将会被删除。';
|
||||||
$lang->msg_auto_saved = "已自动保存!";
|
$lang->msg_auto_saved = '已自动保存!';
|
||||||
|
|
||||||
$lang->cmd_disable = "非激活";
|
$lang->cmd_disable = '非激活';
|
||||||
$lang->cmd_enable = "激活";
|
$lang->cmd_enable = '激活';
|
||||||
|
|
||||||
$lang->editor_skin = '编辑器皮肤';
|
$lang->editor_skin = '编辑器皮肤';
|
||||||
$lang->upload_file_grant = '文件上传权限';
|
$lang->upload_file_grant = '文件上传权限';
|
||||||
|
|
@ -52,49 +52,49 @@
|
||||||
$lang->edit->fontsize = '大小';
|
$lang->edit->fontsize = '大小';
|
||||||
$lang->edit->use_paragraph = '段落功能';
|
$lang->edit->use_paragraph = '段落功能';
|
||||||
$lang->edit->fontlist = array(
|
$lang->edit->fontlist = array(
|
||||||
"仿宋_GB2312",
|
'仿宋_GB2312',
|
||||||
"黑体",
|
'黑体',
|
||||||
"楷体_GB2312",
|
'楷体_GB2312',
|
||||||
"宋体",
|
'宋体',
|
||||||
"Arial",
|
'Arial',
|
||||||
"'Arial Black'",
|
'Arial Black',
|
||||||
"Tahoma",
|
'Tahoma',
|
||||||
"Verdana",
|
'Verdana',
|
||||||
"Sans-serif",
|
'Sans-serif',
|
||||||
"Serif",
|
'Serif',
|
||||||
"Monospace",
|
'Monospace',
|
||||||
"Cursive",
|
'Cursive',
|
||||||
"Fantasy",
|
'Fantasy',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->header = "样式";
|
$lang->edit->header = '样式';
|
||||||
$lang->edit->header_list = array(
|
$lang->edit->header_list = array(
|
||||||
"h1" => "标题 1",
|
'h1' => '标题 1',
|
||||||
"h2" => "标题 2",
|
'h2' => '标题 2',
|
||||||
"h3" => "标题 3",
|
'h3' => '标题 3',
|
||||||
"h4" => "标题 4",
|
'h4' => '标题 4',
|
||||||
"h5" => "标题 5",
|
'h5' => '标题 5',
|
||||||
"h6" => "标题 6",
|
'h6' => '标题 6',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->submit = '确认';
|
$lang->edit->submit = '确认';
|
||||||
|
|
||||||
$lang->edit->help_fontcolor = "文本颜色";
|
$lang->edit->help_fontcolor = '文本颜色';
|
||||||
$lang->edit->help_fontbgcolor = "背景颜色";
|
$lang->edit->help_fontbgcolor = '背景颜色';
|
||||||
$lang->edit->help_bold = "粗体";
|
$lang->edit->help_bold = '粗体';
|
||||||
$lang->edit->help_italic = "斜体";
|
$lang->edit->help_italic = '斜体';
|
||||||
$lang->edit->help_underline = "下划线";
|
$lang->edit->help_underline = '下划线';
|
||||||
$lang->edit->help_strike = "取消线";
|
$lang->edit->help_strike = '取消线';
|
||||||
$lang->edit->help_redo = "重新操作";
|
$lang->edit->help_redo = '重新操作';
|
||||||
$lang->edit->help_undo = "返回操作";
|
$lang->edit->help_undo = '返回操作';
|
||||||
$lang->edit->help_align_left = "左对齐";
|
$lang->edit->help_align_left = '左对齐';
|
||||||
$lang->edit->help_align_center = "居中对齐";
|
$lang->edit->help_align_center = '居中对齐';
|
||||||
$lang->edit->help_align_right = "右对齐";
|
$lang->edit->help_align_right = '右对齐';
|
||||||
$lang->edit->help_add_indent = "缩进";
|
$lang->edit->help_add_indent = '缩进';
|
||||||
$lang->edit->help_remove_indent = "清除缩进";
|
$lang->edit->help_remove_indent = '清除缩进';
|
||||||
$lang->edit->help_list_number = "有序列表";
|
$lang->edit->help_list_number = '有序列表';
|
||||||
$lang->edit->help_list_bullet = "无序列表";
|
$lang->edit->help_list_bullet = '无序列表';
|
||||||
$lang->edit->help_use_paragrapth = "分段请按 ctrl+回车. (发表主题快捷键:alt+S)";
|
$lang->edit->help_use_paragrapth = '分段请按 ctrl+回车. (发表主题快捷键:alt+S)';
|
||||||
|
|
||||||
$lang->edit->upload = '上传';
|
$lang->edit->upload = '上传';
|
||||||
$lang->edit->upload_file = '上传附件';
|
$lang->edit->upload_file = '上传附件';
|
||||||
|
|
|
||||||
|
|
@ -5,31 +5,31 @@
|
||||||
* @brief 網頁編輯器(editor) 模組語言
|
* @brief 網頁編輯器(editor) 模組語言
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$lang->editor = "網頁編輯器";
|
$lang->editor = '網頁編輯器';
|
||||||
$lang->component_name = "組件";
|
$lang->component_name = '組件';
|
||||||
$lang->component_version = "版本";
|
$lang->component_version = '版本';
|
||||||
$lang->component_author = "作者";
|
$lang->component_author = '作者';
|
||||||
$lang->component_link = "連結";
|
$lang->component_link = '連結';
|
||||||
$lang->component_date = "編寫日期";
|
$lang->component_date = '編寫日期';
|
||||||
$lang->component_license = '版權';
|
$lang->component_license = '版權';
|
||||||
$lang->component_history = "紀錄";
|
$lang->component_history = '紀錄';
|
||||||
$lang->component_description = "說明";
|
$lang->component_description = '說明';
|
||||||
$lang->component_extra_vars = "變數設置";
|
$lang->component_extra_vars = '變數設置';
|
||||||
$lang->component_grant = "權限設置";
|
$lang->component_grant = '權限設置';
|
||||||
|
|
||||||
$lang->about_component = "組件簡介";
|
$lang->about_component = '組件簡介';
|
||||||
$lang->about_component_grant = '除預設組件外,可設置延伸組件的使用權限<br />(全部解除時,任何用戶都可使用)。';
|
$lang->about_component_grant = '除預設組件外,可設置延伸組件的使用權限<br />(全部解除時,任何用戶都可使用)。';
|
||||||
$lang->about_component_mid = "可以指定使用編輯器組件的對象。<br />(全部解除時,任何用戶都可使用)。";
|
$lang->about_component_mid = '可以指定使用編輯器組件的對象。<br />(全部解除時,任何用戶都可使用)。';
|
||||||
|
|
||||||
$lang->msg_component_is_not_founded = '找不到%s 組件說明!';
|
$lang->msg_component_is_not_founded = '找不到%s 組件說明!';
|
||||||
$lang->msg_component_is_inserted = '您選擇的組件已插入!';
|
$lang->msg_component_is_inserted = '您選擇的組件已插入!';
|
||||||
$lang->msg_component_is_first_order = '您選擇的組件已達最頂端位置!';
|
$lang->msg_component_is_first_order = '您選擇的組件已達最頂端位置!';
|
||||||
$lang->msg_component_is_last_order = '您選擇的組件已達最底端位置!';
|
$lang->msg_component_is_last_order = '您選擇的組件已達最底端位置!';
|
||||||
$lang->msg_load_saved_doc = "有自動儲存的內容,確定要恢復嗎?\n儲存內容後,自動儲存的內容將會被刪除。";
|
$lang->msg_load_saved_doc = '有自動儲存的內容,確定要恢復嗎?\n儲存內容後,自動儲存的內容將會被刪除。';
|
||||||
$lang->msg_auto_saved = "已自動儲存!";
|
$lang->msg_auto_saved = '已自動儲存!';
|
||||||
|
|
||||||
$lang->cmd_disable = "暫停";
|
$lang->cmd_disable = '暫停';
|
||||||
$lang->cmd_enable = "啟動";
|
$lang->cmd_enable = '啟動';
|
||||||
|
|
||||||
$lang->editor_skin = '編輯器面板';
|
$lang->editor_skin = '編輯器面板';
|
||||||
$lang->upload_file_grant = '檔案上傳權限';
|
$lang->upload_file_grant = '檔案上傳權限';
|
||||||
|
|
@ -52,52 +52,52 @@
|
||||||
$lang->edit->fontsize = '大小';
|
$lang->edit->fontsize = '大小';
|
||||||
$lang->edit->use_paragraph = '段落功能';
|
$lang->edit->use_paragraph = '段落功能';
|
||||||
$lang->edit->fontlist = array(
|
$lang->edit->fontlist = array(
|
||||||
"新細明體",
|
'新細明體',
|
||||||
"標楷體",
|
'標楷體',
|
||||||
"細明體",
|
'細明體',
|
||||||
"Arial",
|
'Arial',
|
||||||
"'Arial Black'",
|
'Arial Black',
|
||||||
"Tahoma",
|
'Tahoma',
|
||||||
"Verdana",
|
'Verdana',
|
||||||
"Sans-serif",
|
'Sans-serif',
|
||||||
"Serif",
|
'Serif',
|
||||||
"Monospace",
|
'Monospace',
|
||||||
"Cursive",
|
'Cursive',
|
||||||
"Fantasy",
|
'Fantasy',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->header = "樣式";
|
$lang->edit->header = '樣式';
|
||||||
$lang->edit->header_list = array(
|
$lang->edit->header_list = array(
|
||||||
"h1" => "標題 1",
|
'h1' => '標題 1',
|
||||||
"h2" => "標題 2",
|
'h2' => '標題 2',
|
||||||
"h3" => "標題 3",
|
'h3' => '標題 3',
|
||||||
"h4" => "標題 4",
|
'h4' => '標題 4',
|
||||||
"h5" => "標題 5",
|
'h5' => '標題 5',
|
||||||
"h6" => "標題 6",
|
'h6' => '標題 6',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang->edit->submit = '確認';
|
$lang->edit->submit = '確認';
|
||||||
|
|
||||||
$lang->edit->help_remove_format = "刪除所選區域的標籤";
|
$lang->edit->help_remove_format = '刪除所選區域的標籤';
|
||||||
$lang->edit->help_strike_through = "文字刪除線";
|
$lang->edit->help_strike_through = '文字刪除線';
|
||||||
$lang->edit->help_align_full = "左右對齊";
|
$lang->edit->help_align_full = '左右對齊';
|
||||||
|
|
||||||
$lang->edit->help_fontcolor = "文字顏色";
|
$lang->edit->help_fontcolor = '文字顏色';
|
||||||
$lang->edit->help_fontbgcolor = "背景顏色";
|
$lang->edit->help_fontbgcolor = '背景顏色';
|
||||||
$lang->edit->help_bold = "粗體";
|
$lang->edit->help_bold = '粗體';
|
||||||
$lang->edit->help_italic = "斜體";
|
$lang->edit->help_italic = '斜體';
|
||||||
$lang->edit->help_underline = "底線";
|
$lang->edit->help_underline = '底線';
|
||||||
$lang->edit->help_strike = "虛線";
|
$lang->edit->help_strike = '虛線';
|
||||||
$lang->edit->help_redo = "重新操作";
|
$lang->edit->help_redo = '重新操作';
|
||||||
$lang->edit->help_undo = "返回操作";
|
$lang->edit->help_undo = '返回操作';
|
||||||
$lang->edit->help_align_left = "靠左對齊";
|
$lang->edit->help_align_left = '靠左對齊';
|
||||||
$lang->edit->help_align_center = "置中對齊";
|
$lang->edit->help_align_center = '置中對齊';
|
||||||
$lang->edit->help_align_right = "靠右對齊";
|
$lang->edit->help_align_right = '靠右對齊';
|
||||||
$lang->edit->help_add_indent = "縮排";
|
$lang->edit->help_add_indent = '縮排';
|
||||||
$lang->edit->help_remove_indent = "移除縮排";
|
$lang->edit->help_remove_indent = '移除縮排';
|
||||||
$lang->edit->help_list_number = "編號";
|
$lang->edit->help_list_number = '編號';
|
||||||
$lang->edit->help_list_bullet = "清單符號";
|
$lang->edit->help_list_bullet = '清單符號';
|
||||||
$lang->edit->help_use_paragrapth = "換段落請按 ctrl+backspace (快速發表主題:alt+S)";
|
$lang->edit->help_use_paragrapth = '換段落請按 ctrl+backspace (快速發表主題:alt+S)';
|
||||||
|
|
||||||
$lang->edit->upload = '上傳';
|
$lang->edit->upload = '上傳';
|
||||||
$lang->edit->upload_file = '上傳附檔';
|
$lang->edit->upload_file = '上傳附檔';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue