mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-08 11:33:55 +09:00
set svn property - svn:eol-style LF
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8253 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
9802eaa60a
commit
620b03d184
763 changed files with 114595 additions and 114595 deletions
|
|
@ -1,81 +1,81 @@
|
|||
<?php
|
||||
/**
|
||||
* @class image_gallery
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief 업로드된 이미지로 이미지갤러리를 만듬
|
||||
**/
|
||||
|
||||
class image_gallery extends EditorHandler {
|
||||
|
||||
// editor_sequence 는 에디터에서 필수로 달고 다녀야 함....
|
||||
var $editor_sequence = 0;
|
||||
var $component_path = '';
|
||||
|
||||
/**
|
||||
* @brief editor_sequence과 컴포넌트의 경로를 받음
|
||||
**/
|
||||
function image_gallery($editor_sequence, $component_path) {
|
||||
$this->editor_sequence = $editor_sequence;
|
||||
$this->component_path = $component_path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief popup window요청시 popup window에 출력할 내용을 추가하면 된다
|
||||
**/
|
||||
function getPopupContent() {
|
||||
// 템플릿을 미리 컴파일해서 컴파일된 소스를 return
|
||||
$tpl_path = $this->component_path.'tpl';
|
||||
$tpl_file = 'popup.html';
|
||||
|
||||
Context::set("tpl_path", $tpl_path);
|
||||
|
||||
$oTemplate = &TemplateHandler::getInstance();
|
||||
return $oTemplate->compile($tpl_path, $tpl_file);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 에디터 컴포넌트가 별도의 고유 코드를 이용한다면 그 코드를 html로 변경하여 주는 method
|
||||
*
|
||||
* 이미지나 멀티미디어, 설문등 고유 코드가 필요한 에디터 컴포넌트는 고유코드를 내용에 추가하고 나서
|
||||
* DocumentModule::transContent() 에서 해당 컴포넌트의 transHtml() method를 호출하여 고유코드를 html로 변경
|
||||
**/
|
||||
function transHTML($xml_obj) {
|
||||
$gallery_info->srl = rand(111111,999999);
|
||||
$gallery_info->border_thickness = $xml_obj->attrs->border_thickness;
|
||||
$gallery_info->gallery_style = $xml_obj->attrs->gallery_style;
|
||||
$gallery_info->border_color = $xml_obj->attrs->border_color;
|
||||
$gallery_info->bg_color = $xml_obj->attrs->bg_color;
|
||||
$gallery_info->gallery_align = $xml_obj->attrs->gallery_align;
|
||||
|
||||
$images_list = $xml_obj->attrs->images_list;
|
||||
$images_list = preg_replace('/\.(gif|jpg|jpeg|png) /i',".\\1\n",$images_list);
|
||||
$gallery_info->images_list = explode("\n",trim($images_list));
|
||||
|
||||
// 만약 출력설정이 XML일 경우 이미지 목록만 출력하도록 코드 생성
|
||||
if(Context::getResponseMethod() == 'XMLRPC') {
|
||||
$output = '';
|
||||
for($i=0;$i<count($gallery_info->images_list);$i++) {
|
||||
$output .= sprintf('<img src="%s" alt="" /><br />', $gallery_info->images_list[$i]);
|
||||
}
|
||||
return $output;
|
||||
}
|
||||
|
||||
// HTML 출력일 경우 템플릿 변환을 거쳐서 갤러리 출력 설정에 맞는 html코드를 생성하도록 함
|
||||
preg_match_all('/(width|height)([^[:digit:]]+)([0-9]+)/i',$xml_obj->attrs->style,$matches);
|
||||
$gallery_info->width = trim($matches[3][0]);
|
||||
if(!$gallery_info->width) $gallery_info->width = 400;
|
||||
|
||||
Context::set('gallery_info', $gallery_info);
|
||||
|
||||
$tpl_path = $this->component_path.'tpl';
|
||||
Context::set("tpl_path", $tpl_path);
|
||||
|
||||
if($gallery_info->gallery_style == "list") $tpl_file = 'list_gallery.html';
|
||||
else $tpl_file = 'slide_gallery.html';
|
||||
|
||||
$oTemplate = &TemplateHandler::getInstance();
|
||||
return $oTemplate->compile($tpl_path, $tpl_file);
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @class image_gallery
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief 업로드된 이미지로 이미지갤러리를 만듬
|
||||
**/
|
||||
|
||||
class image_gallery extends EditorHandler {
|
||||
|
||||
// editor_sequence 는 에디터에서 필수로 달고 다녀야 함....
|
||||
var $editor_sequence = 0;
|
||||
var $component_path = '';
|
||||
|
||||
/**
|
||||
* @brief editor_sequence과 컴포넌트의 경로를 받음
|
||||
**/
|
||||
function image_gallery($editor_sequence, $component_path) {
|
||||
$this->editor_sequence = $editor_sequence;
|
||||
$this->component_path = $component_path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief popup window요청시 popup window에 출력할 내용을 추가하면 된다
|
||||
**/
|
||||
function getPopupContent() {
|
||||
// 템플릿을 미리 컴파일해서 컴파일된 소스를 return
|
||||
$tpl_path = $this->component_path.'tpl';
|
||||
$tpl_file = 'popup.html';
|
||||
|
||||
Context::set("tpl_path", $tpl_path);
|
||||
|
||||
$oTemplate = &TemplateHandler::getInstance();
|
||||
return $oTemplate->compile($tpl_path, $tpl_file);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 에디터 컴포넌트가 별도의 고유 코드를 이용한다면 그 코드를 html로 변경하여 주는 method
|
||||
*
|
||||
* 이미지나 멀티미디어, 설문등 고유 코드가 필요한 에디터 컴포넌트는 고유코드를 내용에 추가하고 나서
|
||||
* DocumentModule::transContent() 에서 해당 컴포넌트의 transHtml() method를 호출하여 고유코드를 html로 변경
|
||||
**/
|
||||
function transHTML($xml_obj) {
|
||||
$gallery_info->srl = rand(111111,999999);
|
||||
$gallery_info->border_thickness = $xml_obj->attrs->border_thickness;
|
||||
$gallery_info->gallery_style = $xml_obj->attrs->gallery_style;
|
||||
$gallery_info->border_color = $xml_obj->attrs->border_color;
|
||||
$gallery_info->bg_color = $xml_obj->attrs->bg_color;
|
||||
$gallery_info->gallery_align = $xml_obj->attrs->gallery_align;
|
||||
|
||||
$images_list = $xml_obj->attrs->images_list;
|
||||
$images_list = preg_replace('/\.(gif|jpg|jpeg|png) /i',".\\1\n",$images_list);
|
||||
$gallery_info->images_list = explode("\n",trim($images_list));
|
||||
|
||||
// 만약 출력설정이 XML일 경우 이미지 목록만 출력하도록 코드 생성
|
||||
if(Context::getResponseMethod() == 'XMLRPC') {
|
||||
$output = '';
|
||||
for($i=0;$i<count($gallery_info->images_list);$i++) {
|
||||
$output .= sprintf('<img src="%s" alt="" /><br />', $gallery_info->images_list[$i]);
|
||||
}
|
||||
return $output;
|
||||
}
|
||||
|
||||
// HTML 출력일 경우 템플릿 변환을 거쳐서 갤러리 출력 설정에 맞는 html코드를 생성하도록 함
|
||||
preg_match_all('/(width|height)([^[:digit:]]+)([0-9]+)/i',$xml_obj->attrs->style,$matches);
|
||||
$gallery_info->width = trim($matches[3][0]);
|
||||
if(!$gallery_info->width) $gallery_info->width = 400;
|
||||
|
||||
Context::set('gallery_info', $gallery_info);
|
||||
|
||||
$tpl_path = $this->component_path.'tpl';
|
||||
Context::set("tpl_path", $tpl_path);
|
||||
|
||||
if($gallery_info->gallery_style == "list") $tpl_file = 'list_gallery.html';
|
||||
else $tpl_file = 'slide_gallery.html';
|
||||
|
||||
$oTemplate = &TemplateHandler::getInstance();
|
||||
return $oTemplate->compile($tpl_path, $tpl_file);
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,35 +1,35 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component version="0.2">
|
||||
<title xml:lang="vi">Slide Show</title>
|
||||
<title xml:lang="ko">기본 이미지 갤러리</title>
|
||||
<title xml:lang="jp">デフォルトイメージギャラリー</title>
|
||||
<title xml:lang="zh-CN">图片相册</title>
|
||||
<title xml:lang="en">Basic Image Gallery</title>
|
||||
<title xml:lang="es">Galería de imágenes básicos</title>
|
||||
<title xml:lang="ru">Базовая галлерея изображений</title>
|
||||
<title xml:lang="zh-TW">預設圖片相簿</title>
|
||||
<title xml:lang="tr">Temel Resim Galerisi</title>
|
||||
<description xml:lang="vi">Bạn có thể tạo ra một Slide Show theo dạng danh sách hoặc Slide từ những hình ảnh đính kèm của mình.</description>
|
||||
<description xml:lang="ko">첨부된 이미지파일을 이용하여 슬라이드/목록형 이미지 갤러리를 만들 수 있습니다.</description>
|
||||
<description xml:lang="jp">添付されたイメージファイルを利用して、スライド型・リスト型のイメージギャラリーが作成できます。</description>
|
||||
<description xml:lang="zh-CN">利用上传的图片文件实现幻灯片式或目录型相册图片。</description>
|
||||
<description xml:lang="en">It can create image gallery of slide/list style by using attached image file.</description>
|
||||
<description xml:lang="es">It can create image gallery of slide/list style by using attached image file.</description>
|
||||
<description xml:lang="ru">Это может создать гллерею изображений в стиле слайдов/списка, используя вложенный файл изображения.</description>
|
||||
<description xml:lang="zh-TW">將上傳的圖片以投影片或列表的形式實現。</description>
|
||||
<description xml:lang="tr">Ekteki resim dosyasını kullanarak, slayt/liste tarzı resim galerisi oluşturabilir.</description>
|
||||
<version>0.1</version>
|
||||
<date>2007-02-28</date>
|
||||
|
||||
<author email_address="developers@xpressengine.com" link="http://xpressengine.com/">
|
||||
<name xml:lang="vi">NHN</name>
|
||||
<name xml:lang="ko">NHN</name>
|
||||
<name xml:lang="jp">NHN</name>
|
||||
<name xml:lang="zh-CN">NHN</name>
|
||||
<name xml:lang="en">NHN</name>
|
||||
<name xml:lang="es">NHN</name>
|
||||
<name xml:lang="ru">NHN</name>
|
||||
<name xml:lang="zh-TW">NHN</name>
|
||||
<name xml:lang="tr">NHN</name>
|
||||
</author>
|
||||
</component>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component version="0.2">
|
||||
<title xml:lang="vi">Slide Show</title>
|
||||
<title xml:lang="ko">기본 이미지 갤러리</title>
|
||||
<title xml:lang="jp">デフォルトイメージギャラリー</title>
|
||||
<title xml:lang="zh-CN">图片相册</title>
|
||||
<title xml:lang="en">Basic Image Gallery</title>
|
||||
<title xml:lang="es">Galería de imágenes básicos</title>
|
||||
<title xml:lang="ru">Базовая галлерея изображений</title>
|
||||
<title xml:lang="zh-TW">預設圖片相簿</title>
|
||||
<title xml:lang="tr">Temel Resim Galerisi</title>
|
||||
<description xml:lang="vi">Bạn có thể tạo ra một Slide Show theo dạng danh sách hoặc Slide từ những hình ảnh đính kèm của mình.</description>
|
||||
<description xml:lang="ko">첨부된 이미지파일을 이용하여 슬라이드/목록형 이미지 갤러리를 만들 수 있습니다.</description>
|
||||
<description xml:lang="jp">添付されたイメージファイルを利用して、スライド型・リスト型のイメージギャラリーが作成できます。</description>
|
||||
<description xml:lang="zh-CN">利用上传的图片文件实现幻灯片式或目录型相册图片。</description>
|
||||
<description xml:lang="en">It can create image gallery of slide/list style by using attached image file.</description>
|
||||
<description xml:lang="es">It can create image gallery of slide/list style by using attached image file.</description>
|
||||
<description xml:lang="ru">Это может создать гллерею изображений в стиле слайдов/списка, используя вложенный файл изображения.</description>
|
||||
<description xml:lang="zh-TW">將上傳的圖片以投影片或列表的形式實現。</description>
|
||||
<description xml:lang="tr">Ekteki resim dosyasını kullanarak, slayt/liste tarzı resim galerisi oluşturabilir.</description>
|
||||
<version>0.1</version>
|
||||
<date>2007-02-28</date>
|
||||
|
||||
<author email_address="developers@xpressengine.com" link="http://xpressengine.com/">
|
||||
<name xml:lang="vi">NHN</name>
|
||||
<name xml:lang="ko">NHN</name>
|
||||
<name xml:lang="jp">NHN</name>
|
||||
<name xml:lang="zh-CN">NHN</name>
|
||||
<name xml:lang="en">NHN</name>
|
||||
<name xml:lang="es">NHN</name>
|
||||
<name xml:lang="ru">NHN</name>
|
||||
<name xml:lang="zh-TW">NHN</name>
|
||||
<name xml:lang="tr">NHN</name>
|
||||
</author>
|
||||
</component>
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/en.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief editor module > language pack of image_gallery component.
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "Make Image Gallery";
|
||||
$lang->width = "Width";
|
||||
$lang->height = "Height";
|
||||
$lang->image_list = "Image List";
|
||||
$lang->gallery_style = "Gallery Style";
|
||||
$lang->gallery_slide_style = "Slide Style";
|
||||
$lang->gallery_slide_align = "Align Style";
|
||||
$lang->gallery_slide_center = "Center";
|
||||
$lang->gallery_slide_left = "Left";
|
||||
$lang->gallery_slide_right = "Right";
|
||||
$lang->gallery_list_style = "Expand All";
|
||||
$lang->gallery_border_color = "Border Color";
|
||||
$lang->gallery_border_thickness = "Border Thickness";
|
||||
$lang->gallery_bg_color = "Background Color";
|
||||
$lang->about_image_list = "Select file to add to the image gallery. You can drag it after selecting or shift+click(for selecting widely), ctrl+click(for selecting individually)";
|
||||
|
||||
$lang->cmd_gallery_prev = "Previous Picture";
|
||||
$lang->cmd_gallery_next = "Next Picture";
|
||||
$lang->cmd_gallery_thumbnail = "Thumbnail";
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/en.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief editor module > language pack of image_gallery component.
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "Make Image Gallery";
|
||||
$lang->width = "Width";
|
||||
$lang->height = "Height";
|
||||
$lang->image_list = "Image List";
|
||||
$lang->gallery_style = "Gallery Style";
|
||||
$lang->gallery_slide_style = "Slide Style";
|
||||
$lang->gallery_slide_align = "Align Style";
|
||||
$lang->gallery_slide_center = "Center";
|
||||
$lang->gallery_slide_left = "Left";
|
||||
$lang->gallery_slide_right = "Right";
|
||||
$lang->gallery_list_style = "Expand All";
|
||||
$lang->gallery_border_color = "Border Color";
|
||||
$lang->gallery_border_thickness = "Border Thickness";
|
||||
$lang->gallery_bg_color = "Background Color";
|
||||
$lang->about_image_list = "Select file to add to the image gallery. You can drag it after selecting or shift+click(for selecting widely), ctrl+click(for selecting individually)";
|
||||
|
||||
$lang->cmd_gallery_prev = "Previous Picture";
|
||||
$lang->cmd_gallery_next = "Next Picture";
|
||||
$lang->cmd_gallery_thumbnail = "Thumbnail";
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/en.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief editor module > language pack of image_gallery component.
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "Haga Galeria de Imagenes";
|
||||
$lang->width = "Ancho";
|
||||
$lang->altura = "Altura";
|
||||
$lang->image_list = "Lista de imagenes";
|
||||
$lang->gallery_style = "Galeria de Estilo";
|
||||
$lang->gallery_slide_style = "Estilo de diapositivas";
|
||||
$lang->gallery_slide_align = "Alinear Estilo";
|
||||
$lang->gallery_slide_center = "Centro";
|
||||
$lang->gallery_slide_left = "Izquierda";
|
||||
$lang->gallery_slide_right = "Derecho";
|
||||
$lang->gallery_list_style = "Mostrar todos";
|
||||
$lang->gallery_border_color = "Color del borde";
|
||||
$lang->gallery_border_thickness = "Grosor de Fronteras";
|
||||
$lang->gallery_bg_color = "Color de fondo";
|
||||
$lang->about_image_list = "Seleccione archivo para anadir a la galeria de imagenes. Puede arrastrar despues de la seleccion o cambio + clic (para seleccionar ampliamente), ctrl + clic (para seleccionar individualmente)";
|
||||
|
||||
$lang->cmd_gallery_prev = "Imagen anterior";
|
||||
$lang->cmd_gallery_next = "Imagen siguiente";
|
||||
$lang->cmd_gallery_thumbnail = "Miniatura";
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/en.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief editor module > language pack of image_gallery component.
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "Haga Galeria de Imagenes";
|
||||
$lang->width = "Ancho";
|
||||
$lang->altura = "Altura";
|
||||
$lang->image_list = "Lista de imagenes";
|
||||
$lang->gallery_style = "Galeria de Estilo";
|
||||
$lang->gallery_slide_style = "Estilo de diapositivas";
|
||||
$lang->gallery_slide_align = "Alinear Estilo";
|
||||
$lang->gallery_slide_center = "Centro";
|
||||
$lang->gallery_slide_left = "Izquierda";
|
||||
$lang->gallery_slide_right = "Derecho";
|
||||
$lang->gallery_list_style = "Mostrar todos";
|
||||
$lang->gallery_border_color = "Color del borde";
|
||||
$lang->gallery_border_thickness = "Grosor de Fronteras";
|
||||
$lang->gallery_bg_color = "Color de fondo";
|
||||
$lang->about_image_list = "Seleccione archivo para anadir a la galeria de imagenes. Puede arrastrar despues de la seleccion o cambio + clic (para seleccionar ampliamente), ctrl + clic (para seleccionar individualmente)";
|
||||
|
||||
$lang->cmd_gallery_prev = "Imagen anterior";
|
||||
$lang->cmd_gallery_next = "Imagen siguiente";
|
||||
$lang->cmd_gallery_thumbnail = "Miniatura";
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/editor/components/image_gallery/lang/jp.lang.php
|
||||
* @author NHN (developers@xpressengine.com) 翻訳:RisaPapa、ミニミ
|
||||
* @brief ウィジウィグエディター(editor)モジュール > イメージギャラリー(image_gallery)コンポネント言語パッケージ
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "イメージギャラリー作成";
|
||||
$lang->width = "横幅サイズ";
|
||||
$lang->height = "縦幅サイズ";
|
||||
$lang->image_list = "イメージリスト";
|
||||
$lang->gallery_style = "ギャラリースタイル";
|
||||
$lang->gallery_slide_style = "スライドスタイル";
|
||||
$lang->gallery_slide_align = "アライン位置";
|
||||
$lang->gallery_slide_center = "中央揃え";
|
||||
$lang->gallery_slide_left = "左揃え";
|
||||
$lang->gallery_slide_right = "右揃え";
|
||||
$lang->gallery_list_style = "展開表示(リスト)";
|
||||
$lang->gallery_border_color = "ボーダーカラー";
|
||||
$lang->gallery_border_thickness = "ボーダー";
|
||||
$lang->gallery_bg_color = "背景色";
|
||||
$lang->about_image_list = "イメージギャラリーに追加するファイルを選択して下さい。選択した後、ドラッグまたは「Shift+クリック(範囲選択)、Ctrl+クリック(個別選択)」が出来ます。";
|
||||
|
||||
$lang->cmd_gallery_prev = "前のイメージ表示";
|
||||
$lang->cmd_gallery_next = "次のイメージ表示";
|
||||
$lang->cmd_gallery_thumbnail = "サムネール表示";
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file modules/editor/components/image_gallery/lang/jp.lang.php
|
||||
* @author NHN (developers@xpressengine.com) 翻訳:RisaPapa、ミニミ
|
||||
* @brief ウィジウィグエディター(editor)モジュール > イメージギャラリー(image_gallery)コンポネント言語パッケージ
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "イメージギャラリー作成";
|
||||
$lang->width = "横幅サイズ";
|
||||
$lang->height = "縦幅サイズ";
|
||||
$lang->image_list = "イメージリスト";
|
||||
$lang->gallery_style = "ギャラリースタイル";
|
||||
$lang->gallery_slide_style = "スライドスタイル";
|
||||
$lang->gallery_slide_align = "アライン位置";
|
||||
$lang->gallery_slide_center = "中央揃え";
|
||||
$lang->gallery_slide_left = "左揃え";
|
||||
$lang->gallery_slide_right = "右揃え";
|
||||
$lang->gallery_list_style = "展開表示(リスト)";
|
||||
$lang->gallery_border_color = "ボーダーカラー";
|
||||
$lang->gallery_border_thickness = "ボーダー";
|
||||
$lang->gallery_bg_color = "背景色";
|
||||
$lang->about_image_list = "イメージギャラリーに追加するファイルを選択して下さい。選択した後、ドラッグまたは「Shift+クリック(範囲選択)、Ctrl+クリック(個別選択)」が出来ます。";
|
||||
|
||||
$lang->cmd_gallery_prev = "前のイメージ表示";
|
||||
$lang->cmd_gallery_next = "次のイメージ表示";
|
||||
$lang->cmd_gallery_thumbnail = "サムネール表示";
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/ru.lang.php
|
||||
* @author NHN (developers@xpressengine.com) | translation by Maslennikov Evgeny aka X-[Vr]bL1s5 | e-mail: x-bliss[a]tut.by; ICQ: 225035467;
|
||||
* @brief editor module > language pack of image_gallery component.
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "Создать галлерею изображений";
|
||||
$lang->width = "Ширина";
|
||||
$lang->height = "Высота";
|
||||
$lang->image_list = "Список изображений";
|
||||
$lang->gallery_style = "Стиль галлереи";
|
||||
$lang->gallery_slide_style = "Стиль слайда";
|
||||
$lang->gallery_slide_align = "Стиль выравнивания";
|
||||
$lang->gallery_slide_center = "Центр";
|
||||
$lang->gallery_slide_left = "Лево";
|
||||
$lang->gallery_slide_right = "Право";
|
||||
$lang->gallery_list_style = "Раскрыть все";
|
||||
$lang->gallery_border_color = "Цыет рамки";
|
||||
$lang->gallery_border_thickness = "Толщина рамки";
|
||||
$lang->gallery_bg_color = "Цвет фона";
|
||||
$lang->about_image_list = "Выберите файл для добавления в галлерею изображений. Вы можете перетащить его после выбора или нажав shift+click(для широкого выделения), ctrl+click(для индивидуального выделения)";
|
||||
|
||||
$lang->cmd_gallery_prev = "Предыдущее изображение";
|
||||
$lang->cmd_gallery_next = "Следующее изображение";
|
||||
$lang->cmd_gallery_thumbnail = "Миниатюра";
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/ru.lang.php
|
||||
* @author NHN (developers@xpressengine.com) | translation by Maslennikov Evgeny aka X-[Vr]bL1s5 | e-mail: x-bliss[a]tut.by; ICQ: 225035467;
|
||||
* @brief editor module > language pack of image_gallery component.
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "Создать галлерею изображений";
|
||||
$lang->width = "Ширина";
|
||||
$lang->height = "Высота";
|
||||
$lang->image_list = "Список изображений";
|
||||
$lang->gallery_style = "Стиль галлереи";
|
||||
$lang->gallery_slide_style = "Стиль слайда";
|
||||
$lang->gallery_slide_align = "Стиль выравнивания";
|
||||
$lang->gallery_slide_center = "Центр";
|
||||
$lang->gallery_slide_left = "Лево";
|
||||
$lang->gallery_slide_right = "Право";
|
||||
$lang->gallery_list_style = "Раскрыть все";
|
||||
$lang->gallery_border_color = "Цыет рамки";
|
||||
$lang->gallery_border_thickness = "Толщина рамки";
|
||||
$lang->gallery_bg_color = "Цвет фона";
|
||||
$lang->about_image_list = "Выберите файл для добавления в галлерею изображений. Вы можете перетащить его после выбора или нажав shift+click(для широкого выделения), ctrl+click(для индивидуального выделения)";
|
||||
|
||||
$lang->cmd_gallery_prev = "Предыдущее изображение";
|
||||
$lang->cmd_gallery_next = "Следующее изображение";
|
||||
$lang->cmd_gallery_thumbnail = "Миниатюра";
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/en.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief editor module > language pack of image_gallery component.
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "Resim Galerisi Oluştur";
|
||||
$lang->width = "Genişlik";
|
||||
$lang->height = "Yükseklik";
|
||||
$lang->image_list = "Resim Listesi";
|
||||
$lang->gallery_style = "Galeri Tarzı";
|
||||
$lang->gallery_slide_style = "Slayt Tarzı";
|
||||
$lang->gallery_slide_align = "Hizalama Tarzı";
|
||||
$lang->gallery_slide_center = "Ortalı";
|
||||
$lang->gallery_slide_left = "Sol";
|
||||
$lang->gallery_slide_right = "Sağ";
|
||||
$lang->gallery_list_style = "Hepsini Genişlet";
|
||||
$lang->gallery_border_color = "Kenarlık Rengi";
|
||||
$lang->gallery_border_thickness = "Kenarlık Kalınlığı";
|
||||
$lang->gallery_bg_color = "Arkaplan Rengi";
|
||||
$lang->about_image_list = "Resim galerisine eklenecek dosyayı seçiniz. Seçtikten sonra dosyayı sürükleyebilirsiniz ya da shift+click(geniş ölçüde seçimler için), ctrl+click(bireysel seçimler için)komutlarını kullanabilirsiniz";
|
||||
|
||||
$lang->cmd_gallery_prev = "Önceki Resim";
|
||||
$lang->cmd_gallery_next = "Sonraki Resim";
|
||||
$lang->cmd_gallery_thumbnail = "Küçük Resim";
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/en.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief editor module > language pack of image_gallery component.
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "Resim Galerisi Oluştur";
|
||||
$lang->width = "Genişlik";
|
||||
$lang->height = "Yükseklik";
|
||||
$lang->image_list = "Resim Listesi";
|
||||
$lang->gallery_style = "Galeri Tarzı";
|
||||
$lang->gallery_slide_style = "Slayt Tarzı";
|
||||
$lang->gallery_slide_align = "Hizalama Tarzı";
|
||||
$lang->gallery_slide_center = "Ortalı";
|
||||
$lang->gallery_slide_left = "Sol";
|
||||
$lang->gallery_slide_right = "Sağ";
|
||||
$lang->gallery_list_style = "Hepsini Genişlet";
|
||||
$lang->gallery_border_color = "Kenarlık Rengi";
|
||||
$lang->gallery_border_thickness = "Kenarlık Kalınlığı";
|
||||
$lang->gallery_bg_color = "Arkaplan Rengi";
|
||||
$lang->about_image_list = "Resim galerisine eklenecek dosyayı seçiniz. Seçtikten sonra dosyayı sürükleyebilirsiniz ya da shift+click(geniş ölçüde seçimler için), ctrl+click(bireysel seçimler için)komutlarını kullanabilirsiniz";
|
||||
|
||||
$lang->cmd_gallery_prev = "Önceki Resim";
|
||||
$lang->cmd_gallery_next = "Sonraki Resim";
|
||||
$lang->cmd_gallery_thumbnail = "Küçük Resim";
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,29 +1,29 @@
|
|||
<?php
|
||||
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
||||
░░ * @File : common/lang/vi.lang.php ░░
|
||||
░░ * @Author : NHN (developers@xpressengine.com) ░░
|
||||
░░ * @Trans : Đào Đức Duy (ducduy.dao.vn@vietxe.net) ░░
|
||||
░░ * @Website: http://vietxe.net ░░
|
||||
░░ * @Brief : Vietnamese Language Pack (Only basic words are included here) ░░
|
||||
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */
|
||||
|
||||
$lang->image_gallery = "Tạo Slide Show";
|
||||
$lang->width = "Chiều rộng";
|
||||
$lang->height = "Chiều cao";
|
||||
$lang->image_list = "Danh sách hình ảnh";
|
||||
$lang->gallery_style = "Kiểu dáng Show";
|
||||
$lang->gallery_slide_style = "Kiểu Slide";
|
||||
$lang->gallery_slide_align = "Kiểu căn chỉnh";
|
||||
$lang->gallery_slide_center = "Giữa";
|
||||
$lang->gallery_slide_left = "Trái";
|
||||
$lang->gallery_slide_right = "Phải";
|
||||
$lang->gallery_list_style = "Mở rộng tất cả";
|
||||
$lang->gallery_border_color = "Màu viền";
|
||||
$lang->gallery_border_thickness = "Độ dày viền";
|
||||
$lang->gallery_bg_color = "Màu nền";
|
||||
$lang->about_image_list = "Chọn hình ảnh để thêm vào Show. Bạn có thể di chuyển hình ảnh bằng cách bấm tổ hợp 'Shift+Click' để di chuyển nhiều hình ảnh, hoặc 'Ctrl+Click' để di chuyển từng hình ảnh.";
|
||||
|
||||
$lang->cmd_gallery_prev = "Hình trước";
|
||||
$lang->cmd_gallery_next = "Hình sau";
|
||||
$lang->cmd_gallery_thumbnail = "Hình nhỏ";
|
||||
?>
|
||||
<?php
|
||||
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
||||
░░ * @File : common/lang/vi.lang.php ░░
|
||||
░░ * @Author : NHN (developers@xpressengine.com) ░░
|
||||
░░ * @Trans : Đào Đức Duy (ducduy.dao.vn@vietxe.net) ░░
|
||||
░░ * @Website: http://vietxe.net ░░
|
||||
░░ * @Brief : Vietnamese Language Pack (Only basic words are included here) ░░
|
||||
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */
|
||||
|
||||
$lang->image_gallery = "Tạo Slide Show";
|
||||
$lang->width = "Chiều rộng";
|
||||
$lang->height = "Chiều cao";
|
||||
$lang->image_list = "Danh sách hình ảnh";
|
||||
$lang->gallery_style = "Kiểu dáng Show";
|
||||
$lang->gallery_slide_style = "Kiểu Slide";
|
||||
$lang->gallery_slide_align = "Kiểu căn chỉnh";
|
||||
$lang->gallery_slide_center = "Giữa";
|
||||
$lang->gallery_slide_left = "Trái";
|
||||
$lang->gallery_slide_right = "Phải";
|
||||
$lang->gallery_list_style = "Mở rộng tất cả";
|
||||
$lang->gallery_border_color = "Màu viền";
|
||||
$lang->gallery_border_thickness = "Độ dày viền";
|
||||
$lang->gallery_bg_color = "Màu nền";
|
||||
$lang->about_image_list = "Chọn hình ảnh để thêm vào Show. Bạn có thể di chuyển hình ảnh bằng cách bấm tổ hợp 'Shift+Click' để di chuyển nhiều hình ảnh, hoặc 'Ctrl+Click' để di chuyển từng hình ảnh.";
|
||||
|
||||
$lang->cmd_gallery_prev = "Hình trước";
|
||||
$lang->cmd_gallery_next = "Hình sau";
|
||||
$lang->cmd_gallery_thumbnail = "Hình nhỏ";
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/zh-CN.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief 网页编辑器(editor) 模块 > 图像(image_gallery) 组件的语言包
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "图像编辑";
|
||||
$lang->width = "宽度";
|
||||
$lang->height = "高度";
|
||||
$lang->image_list = "图像目录";
|
||||
$lang->gallery_style = "风格";
|
||||
$lang->gallery_slide_style = "幻灯片风格";
|
||||
$lang->gallery_slide_align = "对齐方式";
|
||||
$lang->gallery_slide_center = "居中对齐";
|
||||
$lang->gallery_slide_left = "左对齐";
|
||||
$lang->gallery_slide_right = "右对齐";
|
||||
$lang->gallery_list_style = "全部展开";
|
||||
$lang->gallery_border_color = "边框颜色";
|
||||
$lang->gallery_border_thickness = "边框粗细";
|
||||
$lang->gallery_bg_color = "背景颜色";
|
||||
$lang->about_image_list = "请选择要添加的图像文件。 选择后可以拖动或按 shift+点击(范围选择), ctrl+点击(个别选择)";
|
||||
|
||||
$lang->cmd_gallery_prev = "上一个";
|
||||
$lang->cmd_gallery_next = "下一个";
|
||||
$lang->cmd_gallery_thumbnail = "查看缩略图il";
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/zh-CN.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief 网页编辑器(editor) 模块 > 图像(image_gallery) 组件的语言包
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "图像编辑";
|
||||
$lang->width = "宽度";
|
||||
$lang->height = "高度";
|
||||
$lang->image_list = "图像目录";
|
||||
$lang->gallery_style = "风格";
|
||||
$lang->gallery_slide_style = "幻灯片风格";
|
||||
$lang->gallery_slide_align = "对齐方式";
|
||||
$lang->gallery_slide_center = "居中对齐";
|
||||
$lang->gallery_slide_left = "左对齐";
|
||||
$lang->gallery_slide_right = "右对齐";
|
||||
$lang->gallery_list_style = "全部展开";
|
||||
$lang->gallery_border_color = "边框颜色";
|
||||
$lang->gallery_border_thickness = "边框粗细";
|
||||
$lang->gallery_bg_color = "背景颜色";
|
||||
$lang->about_image_list = "请选择要添加的图像文件。 选择后可以拖动或按 shift+点击(范围选择), ctrl+点击(个别选择)";
|
||||
|
||||
$lang->cmd_gallery_prev = "上一个";
|
||||
$lang->cmd_gallery_next = "下一个";
|
||||
$lang->cmd_gallery_thumbnail = "查看缩略图il";
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/zh-TW.lang.php
|
||||
* @author NHN (developers@xpressengine.com) 翻譯:royallin
|
||||
* @brief 網頁編輯器(editor) 模組 > 圖片(image_gallery) 組件的語言
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "圖片編輯";
|
||||
$lang->width = "寬度";
|
||||
$lang->height = "高度";
|
||||
$lang->image_list = "圖片列表";
|
||||
$lang->gallery_style = "風格";
|
||||
$lang->gallery_slide_style = "幻燈片";
|
||||
$lang->gallery_slide_align = "對齊方式";
|
||||
$lang->gallery_slide_center = "置中";
|
||||
$lang->gallery_slide_left = "靠左";
|
||||
$lang->gallery_slide_right = "靠右";
|
||||
$lang->gallery_list_style = "全部展開";
|
||||
$lang->gallery_border_color = "邊框顏色";
|
||||
$lang->gallery_border_thickness = "邊框粗細";
|
||||
$lang->gallery_bg_color = "背景顏色";
|
||||
$lang->about_image_list = "請選擇要新增的圖片檔案。可以框選或按住 shift+左鍵(範圍選擇), ctrl+左鍵(個別選擇)選擇檔案。";
|
||||
|
||||
$lang->cmd_gallery_prev = "上一個";
|
||||
$lang->cmd_gallery_next = "下一個";
|
||||
$lang->cmd_gallery_thumbnail = "檢視縮圖";
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/image_gallery/lang/zh-TW.lang.php
|
||||
* @author NHN (developers@xpressengine.com) 翻譯:royallin
|
||||
* @brief 網頁編輯器(editor) 模組 > 圖片(image_gallery) 組件的語言
|
||||
**/
|
||||
|
||||
$lang->image_gallery = "圖片編輯";
|
||||
$lang->width = "寬度";
|
||||
$lang->height = "高度";
|
||||
$lang->image_list = "圖片列表";
|
||||
$lang->gallery_style = "風格";
|
||||
$lang->gallery_slide_style = "幻燈片";
|
||||
$lang->gallery_slide_align = "對齊方式";
|
||||
$lang->gallery_slide_center = "置中";
|
||||
$lang->gallery_slide_left = "靠左";
|
||||
$lang->gallery_slide_right = "靠右";
|
||||
$lang->gallery_list_style = "全部展開";
|
||||
$lang->gallery_border_color = "邊框顏色";
|
||||
$lang->gallery_border_thickness = "邊框粗細";
|
||||
$lang->gallery_bg_color = "背景顏色";
|
||||
$lang->about_image_list = "請選擇要新增的圖片檔案。可以框選或按住 shift+左鍵(範圍選擇), ctrl+左鍵(個別選擇)選擇檔案。";
|
||||
|
||||
$lang->cmd_gallery_prev = "上一個";
|
||||
$lang->cmd_gallery_next = "下一個";
|
||||
$lang->cmd_gallery_thumbnail = "檢視縮圖";
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue