version 3.35

pull/120/head 3.35
warlee 2016-12-23 11:47:43 +08:00
parent 264c7fa4fa
commit c219c6be48
112 changed files with 772 additions and 1184 deletions

View File

@ -1,4 +1,4 @@
### ver3.34 `2016/12/17`
### ver3.35 `2016/12/17`
-----
#### update:
- 文件管理新增及优化
@ -20,7 +20,7 @@
- 下载权限弱化禁用下载权限后任然可以获取文件内容查看图片pdf视频音乐等在线浏览功能
- 树目录自动记录第一层级打开关闭状态;同时记录编辑器;文件打开对话框等
- 新增状态栏:当前文件夹项目数、选中数展示
- 文件属性增加查看文件md5图片文件支持查看图片尺寸
- 文件属性增加查看文件md5图片文件支持查看图片尺寸;大文件md5延迟加载
- 当前目录变更;左侧树目录对应状态选中;编辑器同理 (path相同则忽略——避免树目录多个存在)
- 文件管理菜单栏优化:功能下拉增加『加入到收藏夹』;自动针对当前目录类型,读写情况功能适配
- 发送到桌面快捷方式:支持文件、文件夹、虚拟目录等创建桌面快捷方式
@ -64,6 +64,7 @@
- 新建文件重命名文件icon自动高度后 优化;图标和列表模式)
- 不同类型目录之间切换:单选、多选;右键菜单还原(目录、回收站、分享目录、收藏夹、所有群组、我的群组等)
- 中文优化win下分享含有中文问题自定义用户目录中文等乱码问题解决
- 时间戳统一成24小时制式
- 文件列表模式增强:
- 支持含有子目录的文件夹多层级展开
- 列表方式:含有双击展开的目录,没法展开&收回树目录
@ -131,10 +132,11 @@
- 上传大小限制:用户&群组;空间大小记录&上限处理 【上传、远程下载、从回收站删除,剪切——粘贴(是否自己空间——加减)】——组没有回收站
- 编辑器优化
- 鼠标中键多光标选择ctrl+shift+G多选模式
- 记录文件打开历史纪录:并自动打开;并按项目区分
- 中文全编码支持,告别乱码(自动识别编码,编辑后保持之前编码)
- 记录文件打开历史纪录:并自动打开;并按项目区分;新打开不存在则提示
- 状态栏显示:当前行、列、选择时光标位置、多光标选择等、选中内容长度;切换语言高亮语法
- 打开新文件时自动显示编辑器并提到最前面
- 增加代码格式化功能【js,css,html 可以格式化选择部分;没有选中则格式化整个文档】
- 增加代码格式化功能【js,css,html,php 可以格式化选择部分;没有选中则格式化整个文档】
- 函数列表匹配优化全功能匹配phpjavascript支持快捷搜索函数部分正则匹配卡死问题增强函数匹配功能(js,c,php等)
- 支持扩展名增强150种语言
- 搜索优化支持批量选择同时编辑同sublime快捷键ctrl+win+G

View File

@ -8,20 +8,20 @@
define('GLOBAL_DEBUG',0);//0 or 1
@date_default_timezone_set(@date_default_timezone_get());
@set_time_limit(1200);//10min pathInfoMuti,search,upload,download...
@set_time_limit(1200);//20min pathInfoMuti,search,upload,download...
@ini_set("max_execution_time",1200);
@ini_set('session.cache_expire',1800);
ob_start();
if(GLOBAL_DEBUG){
define('STATIC_JS','_dev'); //_dev||app
define('STATIC_LESS','less');//less||css
@ini_set("display_errors","on");
@error_reporting(E_ERROR|E_WARNING|E_PARSE);//E_ALL or E_ERROR|E_WARNING|E_PARSE
@error_reporting(E_ERROR|E_PARSE|E_WARNING);
}else{
define('STATIC_JS','app'); //app
define('STATIC_LESS','css');//css
@ini_set("display_errors","on");//on off
@error_reporting(E_ERROR|E_WARNING|E_PARSE); // 0
@ini_set("display_errors","off");//on off
@error_reporting(0); // 0
}
header("Content-type: text/html; charset=utf-8");
@ -38,8 +38,8 @@ define('CORER_DIR', LIB_DIR .'core/'); //核心目录
/*
* 可以数据目录;移到web目录之外可以使程序更安全, 就不用限制用户的扩展名权限了;
* 1. 需要先将data/的子目录移到别的地方 例如D:/ 则先将data下面的所有文件夹拷贝到D:/
* 2. 修改配置 define('DATA_PATH','D:/');
* 1. 需要先将data文件夹移到别的地方 例如将data文件夹拷贝到D:/
* 2. 修改配置 define('DATA_PATH','D:/data/');
*/
define('DATA_PATH', BASIC_PATH .'data/'); //用户数据目录
define('USER_PATH', DATA_PATH .'User/'); //用户目录
@ -83,7 +83,8 @@ $config['cache_dir'] = BASIC_PATH.'data/cache/'; // 缓存文件地址
$config['app_startTime'] = mtime(); //起始时间
$config['app_charset'] = 'utf-8'; //该程序整体统一编码
$config['settings']['static_path'] = "./static/"; //静态文件目录
$config['check_charset'] = 'ASCII,UTF-8,GBK,GB2312,BIG5,EUC-KR,EUC-JP,shift-jis,eucjp-win,sjis-win,JIS'; //文件打开自动检测编码
$config['check_charset'] = 'ansii,utf-8,gbk,gb2312,utf-16,ucs-2,euc-kr,euc-jp,shift-jis,eucjp-win,sjis-win,jis,latin1'; //文件打开自动检测编码
//when edit a file ;check charset and auto converto utf-8;
if (strtoupper(substr(PHP_OS, 0,3)) === 'WIN') {

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "المعاينة مكتب، الحاجة kodexplorer التي سيتم نشرها خارج الشبكة<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">التفاصيل></a>",
"config_save_error_auth" => "فشل في حفظ التكوين، حظرت الإدارة هذا الامتياز!",
"config_save_error_file" => "خطأ، ملف قابل للكتابة!",
"beautify_html" => "أتش تي أم أل كود المجمل",
"beautify_css" => "جيل المغلق رمز المجمل",
"beautify_js" => "شبيبة كود تجميل",
"beautify_code" => "كود المنسق",
"shortcut" => "الاختصارات",
"use_free" => "الاستمرار في استخدام نسخة مجانية",
"learn_more" => "تعرف على المزيد",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "الدليل غير قابل للكتابة، تعيين الدليل وكافة الدلائل إلى محاولة مرة أخرى بعد قراءة والكتابة!",
"menu_name" => "اسم القائمة",
"menu_hidden" => "إخفاء",
"menu_show" => "عرض",
@ -228,7 +227,7 @@ return array(
"install_login" => "يمكنك استخدام تسجيل الدخول حساب التالية",
"install_enter" => "النظام",
"install_user_default" => "المسؤول: {0} / (دون تعيين كلمة مرور)<br/>مستخدم العادي: {1}<br/>مستخدم ضيف: {2}",
"login_root_password" => "كلمة مرور المسؤول",
"login_root_password" => "تعيين كلمة مرور المسؤول",
"login_root_password_tips" => "تعيين كلمة مرور المسؤول!",
"forget_password" => "نسيت كلمة المرور",
"forget_password_tips" => "نسيت كلمة مرور المسؤول: <br/> الرجاء تسجيل الخادم حذف <b>./data/system/install.lock</b> إعادة تعيين. <br/><br/> غير مسؤول نسيت كلمة المرور: <br/> الرجاء الاتصال بمسؤول لإعادة تعيين!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "تعديل",
"last_time" => "آخر زيارة",
"sort_type" => "الترتيب حسب",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "الدليل العام",
"system_path_not_change" => "دليل النظام، لا يمكن تعديلها",
"file" => "ملف",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "офис преглед, kodexplorer нужда да бъдат разположени извън мрежата<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">детайли></a>",
"config_save_error_auth" => "Неуспешно запазване на конфигурацията, администраторът забрани тази привилегия!",
"config_save_error_file" => "Грешка, файлът не е достъпна за писане!",
"beautify_html" => "HTML код beautifier",
"beautify_css" => "CSS поколение код beautifier",
"beautify_js" => "JS код разкрасяване",
"beautify_code" => "Код Formatter",
"shortcut" => "Shortcuts",
"use_free" => "Продължете да използвате безплатната версия",
"learn_more" => "Научете повече",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directory не е достъпна за писане, задаване на директория и всички поддиректории за да се опита отново след четене и запис!",
"menu_name" => "име Menu",
"menu_hidden" => "крия",
"menu_show" => "показ",
@ -228,7 +227,7 @@ return array(
"install_login" => "Можете да използвате следната вход сметка",
"install_enter" => "системата",
"install_user_default" => "Администратор: {0} / (долу зададете парола) <br/> Средна потребител: {1} <br/> Гости: {2}",
"login_root_password" => "Administrator Password",
"login_root_password" => "Определете администраторската парола",
"login_root_password_tips" => "Задайте парола на администратор!",
"forget_password" => "Забравена парола",
"forget_password_tips" => "Забравена Administrator Password: <br/> Моля, влезте сървъра изтриване <b>./data/system/install.lock</b> нулиране; <br/><br/> Non-администратор Забравена парола: <br/> Моля, свържете се с администратора, за да изчисти!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "Модифициран",
"last_time" => "Последно посещение",
"sort_type" => "Сортиране по",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "Public директория",
"system_path_not_change" => "Система директория, не може да бъде променен",
"file" => "досие",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "অফিস প্রিভিউ, kodexplorer প্রয়োজন নেটওয়ার্কের বাইরে মোতায়েন করা<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">বিস্তারিত></a>",
"config_save_error_auth" => "কনফিগারেশন সংরক্ষণ করতে ব্যর্থ, প্রশাসক এই বিশেষ সুযোগ নিষিদ্ধ!",
"config_save_error_file" => "ত্রুটি, ফাইল লেখা যাচ্ছে না!",
"beautify_html" => "HTML কোড Beautifier",
"beautify_css" => "সিএসএস প্রজন্মের কোড Beautifier",
"beautify_js" => "JS কোড সৌন্দর্যায়ন",
"beautify_code" => "কোড ফরম্যাটার",
"shortcut" => "শর্টকাট",
"use_free" => "মুক্ত সংস্করণ ব্যবহার চালিয়ে যান",
"learn_more" => "আরও জানুন",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "ডিরেক্টরি লিখনযোগ্য নয়, ডিরেক্টরি সেট এবং সমস্ত সাব-read-write পর আবার চেষ্টা করুন!",
"menu_name" => "মেনু নাম",
"menu_hidden" => "লুকান",
"menu_show" => "প্রদর্শন",
@ -228,7 +227,7 @@ return array(
"install_login" => "আপনি নিম্নলিখিত অ্যাকাউন্ট লগইন ব্যবহার করতে পারেন",
"install_enter" => "পদ্ধতি",
"install_user_default" => "অ্যাডমিনিস্ট্রেটর: {0} / (একটি পাসওয়ার্ড সেট নিচে) <br/> গড় ব্যবহারকারী: {1} <br/> অতিথি ব্যবহারকারী: {2}",
"login_root_password" => "অ্যাডমিনিস্ট্রেটরের পাসওয়ার্ড",
"login_root_password" => "অ্যাডমিনিস্ট্রেটর পাসওয়ার্ড সেট করুন",
"login_root_password_tips" => "একজন প্রশাসক পাসওয়ার্ড সেট করুন!",
"forget_password" => "আপনার পাসওয়ার্ড ভুলে গেছেন",
"forget_password_tips" => "অ্যাডমিনিস্ট্রেটরের পাসওয়ার্ড ভুলে গেছেন: <br/> সার্ভার লগ ইন করুন রিসেট <b>./data/system/install.lock</b> মুছে ফেলা; <br/><br/> অ প্রশাসক পাসওয়ার্ড ভুলে গেছেন: <br/> রিসেট করতে প্রশাসকের সাথে যোগাযোগ করুন!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "পরিমিত",
"last_time" => "সর্বশেষ ভিজিট",
"sort_type" => "সাজানোর ক্রম",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "জন ডিরেক্টরি",
"system_path_not_change" => "সিস্টেম তালিকা, পরিবর্তন করা যাবে না",
"file" => "ফাইল",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "vista prèvia de l'oficina, kodexplorer necessitat de ser desplegat fora de la xarxa<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">detalls></a>",
"config_save_error_auth" => "No s'ha pogut desar la configuració, l'administrador va prohibir aquest privilegi!",
"config_save_error_file" => "Error, l'arxiu no es pot escriure!",
"beautify_html" => "codi html embellidor",
"beautify_css" => "codi CSS generació embellidor",
"beautify_js" => "js codi d'embelliment",
"beautify_code" => "codi formatador",
"shortcut" => "Els accessos directes",
"use_free" => "Seguir utilitzant la versió gratuïta",
"learn_more" => "més informació",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directori no es pot escriure, establir el directori i tots els subdirectoris per intentar-ho de nou després de la lectura-escriptura!",
"menu_name" => "nom del menú",
"menu_hidden" => "amagar",
"menu_show" => "visualització",
@ -228,7 +227,7 @@ return array(
"install_login" => "Podeu utilitzar el següent accés al compte",
"install_enter" => "El sistema de",
"install_user_default" => "Administrador: {0} / (per sota d&#39;establir una contrasenya) <br/> L&#39;usuari mitjà: {1} <br/> Els usuaris convidats: {2}",
"login_root_password" => "Contrasenya d'administrador",
"login_root_password" => "Establir la contrasenya d'administrador",
"login_root_password_tips" => "Establir una contrasenya d'administrador!",
"forget_password" => "¿Ha oblidat la seva contrasenya",
"forget_password_tips" => "Heu oblidat la contrasenya de l&#39;administrador: <br/> Si us plau, ingressi servidor eliminar <b>./data/system/install.lock</b> restablir; <br/><br/> No oblidat la contrasenya d&#39;administrador: <br/> Si us plau, poseu-vos en contacte amb l&#39;administrador per restablir!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modificat",
"last_time" => "última visita",
"sort_type" => "ordenar per",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "directori públic",
"system_path_not_change" => "directori del sistema, no pot ser modificada",
"file" => "expedient",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "office náhled, kodexplorer potřeba být vysláni mimo síť<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">podrobnosti></a>",
"config_save_error_auth" => "Nepodařilo se uložit konfiguraci, administrátor zakázal tuto výsadu!",
"config_save_error_file" => "Chyba, soubor není zapisovatelný!",
"beautify_html" => "html kód beautifier",
"beautify_css" => "css-generování kódu beautifier",
"beautify_js" => "js kód zkrášlování",
"beautify_code" => "Code Formatter",
"shortcut" => "zkratky",
"use_free" => "Nadále používat bezplatnou verzi",
"learn_more" => "Více informací",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Adresář není zapisovatelný, nastavit adresář a všechny podadresáře zkusit znovu po čtení psát!",
"menu_name" => "název nabídky",
"menu_hidden" => "skrýt",
"menu_show" => "zobrazit",
@ -228,7 +227,7 @@ return array(
"install_login" => "Můžete použít následující přihlašovací účet",
"install_enter" => "systém",
"install_user_default" => "Administrátor: {0} / (dole nastavit heslo) <br/> Průměrný uživatel: {1} <br/> Uživatelé hodnocení: {2}",
"login_root_password" => "Heslo správce",
"login_root_password" => "Nastavit heslo správce",
"login_root_password_tips" => "Nastavit heslo správce!",
"forget_password" => "Zapomenuté heslo",
"forget_password_tips" => "Zapomněli heslo správce: <br/> Prosím přihlašte serveru smazat <b>./data/system/install.lock</b> resetovat; <br/><br/> Non-správce Zapomněli jste heslo: <br/> Obraťte se na správce resetovat!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modifikovaná",
"last_time" => "Poslední návštěva",
"sort_type" => "třídit podle",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "veřejný adresář",
"system_path_not_change" => "Adresář systému, nemůže být modifikován",
"file" => "soubor",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "kontor preview, der kodexplorer behov skal udstationeres uden for netværket<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">detaljer></a>",
"config_save_error_auth" => "Det lykkedes ikke at gemme konfigurationen, administratoren forbudt dette privilegium!",
"config_save_error_file" => "Fejl, fil ikke skrivbare!",
"beautify_html" => "html-kode beautifier",
"beautify_css" => "css generation kode beautifier",
"beautify_js" => "js kode forskønnelse",
"beautify_code" => "kode Formatter",
"shortcut" => "Genveje",
"use_free" => "Fortsæt med at bruge den gratis version",
"learn_more" => "Lær mere",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Mappe er ikke skrivbar, indstille mappe og alle undermapper for at prøve igen efter læse-skrive!",
"menu_name" => "Menu navn",
"menu_hidden" => "Skjul",
"menu_show" => "udstilling",
@ -228,7 +227,7 @@ return array(
"install_login" => "Du kan bruge følgende konto login",
"install_enter" => "systemet",
"install_user_default" => "Administrator: {0} / (under angive en adgangskode) <br/> Gennemsnitlig bruger: {1} <br/> Gæstebrugere: {2}",
"login_root_password" => "administrator Password",
"login_root_password" => "Indstil administratoradgangskoden",
"login_root_password_tips" => "Angiv en administratoradgangskode!",
"forget_password" => "Har du glemt din adgangskode",
"forget_password_tips" => "Glemt Administrator Password: <br/> Du skal logge server slette <b>./data/system/install.lock</b> nulstille; <br/><br/> Ikke-administrator Glemt Kodeord: <br/> Kontakt administratoren for at nulstille!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "Modificeret",
"last_time" => "sidste besøg",
"sort_type" => "Sorter efter",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "Offentlig mappe",
"system_path_not_change" => "System mappe, kan ikke ændres",
"file" => "Fil",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "Büro Vorschau, kodexplorer Bedarf außerhalb des Netzwerks eingesetzt werden<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">Details></a>",
"config_save_error_auth" => "Konnte die Konfiguration zu speichern, verbot der Administrator dieses Privileg!",
"config_save_error_file" => "Fehler, Datei nicht beschreibbar!",
"beautify_html" => "HTML-Code beautifier",
"beautify_css" => "CSS-Generation Code beautifier",
"beautify_js" => "js Code Verschönerungs",
"beautify_code" => "Code Formatter",
"shortcut" => "Shortcuts",
"use_free" => "Weiter die kostenlose Version zu verwenden",
"learn_more" => "Erfahren Sie mehr",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Verzeichnis ist nicht beschreibbar, setzen Sie das Verzeichnis und alle Unterverzeichnisse zu versuchen Sie es erneut, nachdem die Schreib-Lese-!",
"menu_name" => "Menüname",
"menu_hidden" => "verstecken",
"menu_show" => "Anzeige",
@ -228,7 +227,7 @@ return array(
"install_login" => "Sie können das folgende Konto Login verwenden",
"install_enter" => "das System",
"install_user_default" => "Administrator: {0} / (unten, um ein Passwort festgelegt) <br/> Durchschnittliche User: {1} <br/> Gastbenutzer: {2}",
"login_root_password" => "Administrator-Passwort",
"login_root_password" => "Legen Sie das Administratorkennwort",
"login_root_password_tips" => "Legen Sie ein Administratorpasswort!",
"forget_password" => "Passwort vergessen",
"forget_password_tips" => "Passwort Administrator-Passwort: <br/> Bitte melden Sie sich Server löschen <b>./data/system/install.lock</b> zurückgesetzt; <br/><br/> Nicht-Administrator Passwort vergessen: <br/> Bitte kontaktieren Sie den Administrator zurücksetzen!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "Geändert",
"last_time" => "Letzter Besuch",
"sort_type" => "Sortieren nach",
"time_type" => "d/m/Y H:i",
"time_type_info" => "d/m/Y H:i",
"time_type" => "d/m/Y H:i:s",
"time_type_info" => "d/m/Y H:i:s",
"public_path" => "Öffentliches Verzeichnis",
"system_path_not_change" => "Systemverzeichnis, können nicht geändert werden",
"file" => "Datei",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "προεπισκόπηση γραφείο, kodexplorer ανάγκη να αναπτυχθεί έξω από το δίκτυο<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">λεπτομέρειες></a>",
"config_save_error_auth" => "Αποτυχία για να αποθηκεύσετε τη ρύθμιση, ο διαχειριστής απαγορευτεί αυτό το προνόμιο!",
"config_save_error_file" => "Σφάλμα, το αρχείο δεν είναι εγγράψιμο!",
"beautify_html" => "html κώδικα καλλωπιστής",
"beautify_css" => "CSS κώδικα γενιάς καλλωπιστής",
"beautify_js" => "κωδικό js ωραιοποίηση",
"beautify_code" => "Κωδικός Μορφοποιητής",
"shortcut" => "συντομεύσεις",
"use_free" => "Να συνεχίσουν να χρησιμοποιούν την δωρεάν έκδοση",
"learn_more" => "Μάθετε περισσότερα",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directory δεν είναι εγγράψιμος, που τον κατάλογο και όλους τους υποκαταλόγους να προσπαθήσετε ξανά μετά την ανάγνωση γράφετε!",
"menu_name" => "όνομα του μενού",
"menu_hidden" => "κρύβω",
"menu_show" => "επίδειξη",
@ -228,7 +227,7 @@ return array(
"install_login" => "Μπορείτε να χρησιμοποιήσετε την ακόλουθη σύνδεση λογαριασμού",
"install_enter" => "Το σύστημα",
"install_user_default" => "Διαχειριστής: {0} / (κάτω ορίσετε έναν κωδικό πρόσβασης) <br/> Ο μέσος χρήστης: {1} <br/> Οι χρήστες επισκεπτών: {2}",
"login_root_password" => "Administrator Password",
"login_root_password" => "Ορίστε τον κωδικό πρόσβασης διαχειριστή",
"login_root_password_tips" => "Ορίστε έναν κωδικό πρόσβασης διαχειριστή!",
"forget_password" => "Ξεχάσατε τον κωδικό σας",
"forget_password_tips" => "Ξεχάσατε τον κωδικό πρόσβασης διαχειριστή: <br/> Παρακαλούμε συνδεθείτε διακομιστής διαγράψετε <b>./data/system/install.lock</b> επαναφορά? <br/><br/> Μη-διαχειριστής Ξεχάσατε τον κωδικό: <br/> Παρακαλείστε να επικοινωνήσετε με το διαχειριστή για να επαναφέρετε!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "τροποποιημένο",
"last_time" => "τελευταία Επίσκεψη",
"sort_type" => "Ταξινόμηση κατά",
"time_type" => "d/m/Y H:i",
"time_type_info" => "d/m/Y H:i",
"time_type" => "d/m/Y H:i:s",
"time_type_info" => "d/m/Y H:i:s",
"public_path" => "δημόσιου καταλόγου",
"system_path_not_change" => "κατάλογο συστήματος, δεν μπορεί να τροποποιηθεί",
"file" => "αρχείο",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "Office preview,kodexplorer needs to be deployed in the network<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">more></a>",
"config_save_error_auth" => "Error,no permission!",
"config_save_error_file" => "Error, the file does not write permission!",
"beautify_html" => "Html beautify",
"beautify_css" => "Css beautify",
"beautify_js" => "Js beautify",
"beautify_code" => "Code formatting",
"shortcut" => "Shortcuts",
"use_free" => "Continue to use the free version",
"learn_more" => "Learn more",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directory is not writable, please set the directory and all subdirectories to read and write and try again!",
"menu_name" => "Menu name",
"menu_hidden" => "Hide",
"menu_show" => "Show",
@ -228,7 +227,7 @@ return array(
"install_login" => "Use the following account login",
"install_enter" => "Enter",
"install_user_default" => "Administrator: {0} / (below set a password) <br/> Average user: {1} <br/> Guest users: {2}",
"login_root_password" => "Admin Password",
"login_root_password" => "Set the administrator password",
"login_root_password_tips" => "Please set admin's password!",
"forget_password" => "Forget Password",
"forget_password_tips" => "Forgot Administrator Password: <br/> Please log server delete <b>./data/system/install.lock</b> reset; <br/><br/> Non-administrator Forgot Password: <br/> Please contact the administrator to reset!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "Modified",
"last_time" => "Last visited",
"sort_type" => "Sort of way",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "Public path",
"system_path_not_change" => "System path,Can't edit",
"file" => "File",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "vista previa de la oficina, kodexplorer necesidad de ser desplegado fuera de la red<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">detalles></a>",
"config_save_error_auth" => "No se pudo guardar la configuración, el administrador prohibió este privilegio!",
"config_save_error_file" => "Error, el archivo no se puede escribir!",
"beautify_html" => "código html embellecedor",
"beautify_css" => "código CSS generación embellecedor",
"beautify_js" => "js código de embellecimiento",
"beautify_code" => "código formateador",
"shortcut" => "Los accesos directos",
"use_free" => "Seguir utilizando la versión gratuita",
"learn_more" => "Más información",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directorio no se puede escribir, establecer el directorio y todos los subdirectorios para intentarlo de nuevo después de la lectura-escritura!",
"menu_name" => "nombre del menú",
"menu_hidden" => "ocultar",
"menu_show" => "visualización",
@ -228,7 +227,7 @@ return array(
"install_login" => "Usted puede utilizar el siguiente acceso a la cuenta",
"install_enter" => "El sistema de",
"install_user_default" => "Administrador: {0} / (por debajo de establecer una contraseña) <br/> El usuario medio: {1} <br/> Los usuarios invitados: {2}",
"login_root_password" => "Contraseña de administrador",
"login_root_password" => "Establecer la contraseña de administrador",
"login_root_password_tips" => "Establecer una contraseña de administrador!",
"forget_password" => "¿Ha olvidado su contraseña",
"forget_password_tips" => "¿Ha olvidado la contraseña del administrador: <br/> Por favor, ingrese servidor eliminar <b>./data/system/install.lock</b> restablecer; <br/><br/> No olvidado la contraseña de administrador: <br/> Por favor, póngase en contacto con el administrador para restablecer!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modificado",
"last_time" => "última visita",
"sort_type" => "Ordenar por",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "directorio público",
"system_path_not_change" => "directorio del sistema, no puede ser modificada",
"file" => "expediente",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "office eelvaade kodexplorer, tuleb kasutusele väljaspool võrgu<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">üksikasju></a>",
"config_save_error_auth" => "Õnnestunud salvestada konfiguratsiooni, administraator keelatud see privileeg!",
"config_save_error_file" => "Viga faili pole kirjutatav!",
"beautify_html" => "html koodi beautifier",
"beautify_css" => "CSS-põlvkonna koodi beautifier",
"beautify_js" => "js kood kaunistamist",
"beautify_code" => "kood Formatter",
"shortcut" => "otseteed",
"use_free" => "Jätka kasutada tasuta versiooni",
"learn_more" => "Lähemalt",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Kaust ei ole kirjutatav, määrata kataloogi ja kõik alamkataloogid uuesti proovida pärast lugeda-kirjutada!",
"menu_name" => "Menüü nimi",
"menu_hidden" => "varjama",
"menu_show" => "ekraan",
@ -228,7 +227,7 @@ return array(
"install_login" => "Te võite kasutada järgmisi login",
"install_enter" => "süsteem",
"install_user_default" => "Administraator: {0} / (alla seada parooli) <br/> Keskmine kasutaja: {1} <br/> Klientide kasutajad: {2}",
"login_root_password" => "Administrator Password",
"login_root_password" => "Määra administraatori parooli",
"login_root_password_tips" => "Määra administraatori parooli!",
"forget_password" => "Unustasid oma parooli",
"forget_password_tips" => "Unustasid Administrator Password: <br/> Palun logi server kustutada <b>./data/system/install.lock</b> nullida; <br/><br/> Mittehaldurist Unustasid Salasõna: <br/> Palun pöörduge administraatori taastada!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "Muudetud",
"last_time" => "Viimane külastus",
"sort_type" => "Sorteeri",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "avalik kataloog",
"system_path_not_change" => "Süsteem kataloog, ei saa muuta",
"file" => "fail",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "پیش نمایش اداری، نیاز kodexplorer به خارج از شبکه مستقر می شود<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">جزئیات></a>",
"config_save_error_auth" => "برای صرفه جویی در پیکربندی انجام نشد، مدیر ممنوع این امتیاز!",
"config_save_error_file" => "خطا، فایل قابل نوشتن نیست!",
"beautify_html" => "HTML کد قشنگ",
"beautify_css" => "CSS نسل قشنگ کد",
"beautify_js" => "جی اس زیباسازی کد",
"beautify_code" => "کد قالب",
"shortcut" => "کلید های میانبر",
"use_free" => "همچنان به استفاده از نسخه رایگان",
"learn_more" => "بیشتر بدانید",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "قابل نگارش است، مجموعه ای از پوشه و تمام زیرشاخه به دوباره پس از خواندن و نوشتن را امتحان کنید!",
"menu_name" => "نام منو",
"menu_hidden" => "پنهان کردن",
"menu_show" => "نمایش",
@ -228,7 +227,7 @@ return array(
"install_login" => "شما می توانید ورود به حساب های زیر استفاده کنید",
"install_enter" => "سیستم",
"install_user_default" => "مدیر: {0} / (زیر یک رمز عبور تعیین) <br/> میانگین کاربر: {1} <br/> کاربران مهمان: {2}",
"login_root_password" => "رمز عبور",
"login_root_password" => "تنظیم رمز عبور مدیر",
"login_root_password_tips" => "تنظیم یک رمز عبور مدیر!",
"forget_password" => "رمز عبور خود را فراموش کرده",
"forget_password_tips" => "را فراموش کرده اید رمز عبور: <br/> لطفا سرور وارد شوید حذف <b>./data/system/install.lock</b> تنظیم مجدد؛ <br/><br/> غیر مدیر فراموشی رمز عبور: <br/> لطفا با مدیریت تماس برای تنظیم مجدد!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "اصلاح",
"last_time" => "آخرین بازدید",
"sort_type" => "مرتب سازی بر اساس",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "دایرکتوری های عمومی",
"system_path_not_change" => "دایرکتوری سیستم، قابل تغییر نیست",
"file" => "پرونده",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "office esikatselu, kodexplorer tarve ulkopuolelle lähetetyille verkon<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">tiedot></a>",
"config_save_error_auth" => "Ei voitu tallentaa kokoonpano, ylläpitäjä kielletty tämä etuoikeus!",
"config_save_error_file" => "Virhe tiedostoa ei voi kirjoittaa!",
"beautify_html" => "html-koodia beautifier",
"beautify_css" => "css sukupolven koodi beautifier",
"beautify_js" => "js koodin kaunistamiseen",
"beautify_code" => "koodi Formatter",
"shortcut" => "pikavalinnat",
"use_free" => "Edelleen käyttää ilmainen versio",
"learn_more" => "Lisätietoja",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Ei voida kirjoittaa, aseta hakemiston ja alihakemistot yrittää uudelleen luetun kirjoittaa!",
"menu_name" => "Valikon nimi",
"menu_hidden" => "piilottaa",
"menu_show" => "näyttö",
@ -228,7 +227,7 @@ return array(
"install_login" => "Voit käyttää seuraavia tilille kirjautumiseen",
"install_enter" => "järjestelmä",
"install_user_default" => "Ylläpitäjä: {0} / (alla asettaa salasanan) <br/> Keskimääräinen käyttäjä: {1} <br/> Vieraiden käyttäjät: {2}",
"login_root_password" => "järjestelmänvalvojan salasana",
"login_root_password" => "Aseta järjestelmänvalvojan salasana",
"login_root_password_tips" => "Aseta järjestelmänvalvojan salasana!",
"forget_password" => "Salasana unohtunut",
"forget_password_tips" => "Unohtunut Ylläpitäjä Salasana: <br/> Ole hyvä ja kirjaudu palvelimen poistaa <b>./data/system/install.lock</b> reset; <br/><br/> Non-ylläpitäjä unohtunut: <br/> Ota yhteyttä ylläpitoon nollata!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "Muokattu",
"last_time" => "Viimeinen käynti",
"sort_type" => "Lajittelu",
"time_type" => "d/m/Y H:i",
"time_type_info" => "d/m/Y H:i",
"time_type" => "d/m/Y H:i:s",
"time_type_info" => "d/m/Y H:i:s",
"public_path" => "julkinen hakemisto",
"system_path_not_change" => "Järjestelmän hakemistoon, ei voida muuttaa",
"file" => "tiedosto",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "bureau aperçu, nécessité kodexplorer à déployer en dehors du réseau<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">détails></a>",
"config_save_error_auth" => "Impossible d'enregistrer la configuration, l'administrateur a interdit ce privilège!",
"config_save_error_file" => "Erreur, fichier non inscriptible!",
"beautify_html" => "Code html beautifier",
"beautify_css" => "Code css génération beautifier",
"beautify_js" => "Code js embellissement",
"beautify_code" => "formateur de code",
"shortcut" => "Raccourcis",
"use_free" => "Continuer à utiliser la version gratuite",
"learn_more" => "En savoir plus",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directory est pas inscriptible, définir le répertoire et tous les sous-répertoires pour essayer à nouveau après la lecture-écriture!",
"menu_name" => "Nom du menu",
"menu_hidden" => "cacher",
"menu_show" => "afficher",
@ -228,7 +227,7 @@ return array(
"install_login" => "Vous pouvez utiliser le compte de connexion suivante",
"install_enter" => "le système",
"install_user_default" => "Administrateur: {0} / (ci-dessous un mot de passe) <br/> utilisateur moyen: {1} <br/> Les utilisateurs invités: {2}",
"login_root_password" => "Mot de passe administrateur",
"login_root_password" => "Définissez le mot de passe administrateur",
"login_root_password_tips" => "Définir un mot de passe administrateur!",
"forget_password" => "Vous avez oublié votre mot de passe",
"forget_password_tips" => "Mot de passe administrateur: <br/> S&#39;il vous plaît serveur connecter supprimer <b>./data/system/install.lock</b> réinitialiser; <br/><br/> Non-administrateur Mot de passe oublié: <br/> S&#39;il vous plaît contacter l&#39;administrateur pour réinitialiser!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modifié",
"last_time" => "Dernière visite",
"sort_type" => "Trier par",
"time_type" => "d/m/Y H:i",
"time_type_info" => "d/m/Y H:i",
"time_type" => "d/m/Y H:i:s",
"time_type_info" => "d/m/Y H:i:s",
"public_path" => "répertoire public",
"system_path_not_change" => "répertoire système, ne peut pas être modifié",
"file" => "fichier",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "previsualización oficina, necesidade kodexplorer para ser implantado fóra da rede<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">detalles></a>",
"config_save_error_auth" => "Erro ao gardar a configuración, o administrador prohibiu ese privilexio!",
"config_save_error_file" => "De erro, o arquivo non se pode escribir!",
"beautify_html" => "html embelecedor de código",
"beautify_css" => "css-xeración embelecedor de código",
"beautify_js" => "js embelecemento código",
"beautify_code" => "código Formatter",
"shortcut" => "atallos",
"use_free" => "Continuar a utilizar a versión gratuita",
"learn_more" => "máis información",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directorio non pode escribir nel, establecer o directorio e todos os subdirectorios para tentar de novo tras a lectura e escritura!",
"menu_name" => "nome do menú",
"menu_hidden" => "ocultar",
"menu_show" => "exhibición",
@ -228,7 +227,7 @@ return array(
"install_login" => "Pode utilizar o seguinte sesión da conta",
"install_enter" => "o sistema",
"install_user_default" => "Administrador: {0} / (por baixo de establecer un contrasinal) <br/> usuario medio: {1} <br/> Os usuarios convidados: {2}",
"login_root_password" => "Contrasinal de administrador",
"login_root_password" => "Establecer o contrasinal do administrador",
"login_root_password_tips" => "Define un contrasinal de administrador!",
"forget_password" => "Esqueceches o contrasinal",
"forget_password_tips" => "Esqueceches o contrasinal de administrador: <br/> Entra servidor eliminar <b>./data/system/install.lock</b> axustar; <br/><br/> Non administrador Esqueceches o contrasinal: <br/> Póñase en contacto co seu administrador para axustar!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modificada",
"last_time" => "última Visita",
"sort_type" => "Ordenar por",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "directorio público",
"system_path_not_change" => "directorio do sistema, non pode ser modificado",
"file" => "arquivo",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "कार्यालय पूर्वावलोकन, kodexplorer की जरूरत नेटवर्क<br/><br/><a href=\"http://kalcaddle.m/office.html\" target=\"_blank\">विवरण></a>",
"config_save_error_auth" => "विन्यास को बचाने में विफल, व्यवस्थापक इस विशेषाधिकार पर प्रतिबंध लगा दिया!",
"config_save_error_file" => "त्रुटि, फाइल लिखने योग्य नहीं!",
"beautify_html" => "एचटीएमएल कोड beautifier",
"beautify_css" => "सीएसएस पीढ़ी कोड beautifier",
"beautify_js" => "जे एस कोड सौंदर्यीकरण",
"beautify_code" => "संहिता Formatter",
"shortcut" => "शॉर्टकट",
"use_free" => "मुक्त संस्करण का उपयोग करने के लिए जारी",
"learn_more" => "जानें",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "निर्देशिका लिखने योग्य नहीं है, निर्देशिका सेट और सभी सबडायरेक्टरियों पढ़ने लिखने के बाद फिर से कोशिश करने के लिए!",
"menu_name" => "मेनू नाम",
"menu_hidden" => "छिपाना",
"menu_show" => "प्रदर्शन",
@ -228,7 +227,7 @@ return array(
"install_login" => "आप निम्न खाते में प्रवेश के लिए उपयोग कर सकते",
"install_enter" => "प्रणाली",
"install_user_default" => "प्रशासक: {0} / (एक पासवर्ड सेट नीचे) <br/> औसत उपयोगकर्ता: {1} <br/> अतिथि उपयोगकर्ताओं: {2}",
"login_root_password" => "व्यवस्थापक पासवर्ड",
"login_root_password" => "व्यवस्थापक पासवर्ड सेट करें",
"login_root_password_tips" => "एक व्यवस्थापक पासवर्ड सेट करें!",
"forget_password" => "अपना पासवर्ड भूल गए",
"forget_password_tips" => "प्रशासक पासवर्ड भूल: <br/> सर्वर लॉग इन करें रीसेट <b>./data/system/install.lock</b> हटाना; <br/><br/> गैर-व्यवस्थापक पासवर्ड भूल: <br/> रीसेट करने के लिए व्यवस्थापक से संपर्क करें!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "संशोधित",
"last_time" => "अंतिम भेंट",
"sort_type" => "द्वारा क्रमबद्ध करें",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "सार्वजनिक निर्देशिका",
"system_path_not_change" => "सिस्टम निर्देशिका, संशोधित नहीं किया जा सकता",
"file" => "फ़ाइल",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "Ured pregled, kodexplorer moraju biti razmještene izvan mreže<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">detalja></a>",
"config_save_error_auth" => "Neuspjelo spremanje konfiguracije, administrator zabranio tu povlasticu!",
"config_save_error_file" => "Pogreška, podnijeti ne može pisati!",
"beautify_html" => "HTML kod beautifier",
"beautify_css" => "CSS-generacije kod beautifier",
"beautify_js" => "js kod uljepšavanje",
"beautify_code" => "kod za formatiranje",
"shortcut" => "Prečaci",
"use_free" => "Nastaviti koristiti besplatnu verziju",
"learn_more" => "Saznajte više",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Direktorij ne može se pisati, postaviti imenik i sve poddirektorije pokušati ponovno nakon što je čitanje i pisanje!",
"menu_name" => "naziv izbornika",
"menu_hidden" => "sakriti",
"menu_show" => "prikaz",
@ -228,7 +227,7 @@ return array(
"install_login" => "Možete koristiti sljedeće račun za prijavu",
"install_enter" => "sustav",
"install_user_default" => "Administrator: {0} / (ispod postavite lozinku) <br/> Prosječan korisnik: {1} <br/> Ocjene korisnika: {2}",
"login_root_password" => "Administrator Password",
"login_root_password" => "Postavite administratorsku lozinku",
"login_root_password_tips" => "Postavite administratorsku lozinku!",
"forget_password" => "Zaboravili ste lozinku",
"forget_password_tips" => "Zaboravili Administrator Password: <br/> Molimo, prijavite poslužitelja izbrisati <b>./data/system/install.lock</b> poništiti; <br/><br/> Non-administrator Zaboravljena lozinka: <br/> Obratite se administratoru za vraćanje!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "promijenjen",
"last_time" => "Zadnja posjeta",
"sort_type" => "Sortiranje po",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "Javni imenik",
"system_path_not_change" => "Sustav katalog, ne može se mijenjati",
"file" => "File",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "irodai előnézet, kodexplorer igénybe kell venni a hálózaton kívüli<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">részletek></a>",
"config_save_error_auth" => "Nem sikerült menteni a konfigurációt, az adminisztrátor megtiltotta ezt a kiváltságot!",
"config_save_error_file" => "Hiba, a fájl nem írható!",
"beautify_html" => "html kódot beautifier",
"beautify_css" => "css generációs kód beautifier",
"beautify_js" => "js kód szépítés",
"beautify_code" => "kód formázó",
"shortcut" => "parancsikonok",
"use_free" => "Továbbra is használhatja az ingyenes verzió",
"learn_more" => "További",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Könyvtár nem írható, a könyvtárat és minden alkönyvtárat próbálja újra az író-olvasó!",
"menu_name" => "Menünév",
"menu_hidden" => "elrejt",
"menu_show" => "kijelző",
@ -228,7 +227,7 @@ return array(
"install_login" => "Használhatja a következő fiók bejelentkezési",
"install_enter" => "A rendszer",
"install_user_default" => "Administrator: {0} / (lent jelszót beállítani) <br/> Átlagos felhasználói: {1} <br/> Vendég felhasználók: {2}",
"login_root_password" => "adminisztrátori jelszó",
"login_root_password" => "Állítsa be a rendszergazdai jelszót",
"login_root_password_tips" => "Beállított adminisztrátori jelszót!",
"forget_password" => "Elfelejtett jelszó",
"forget_password_tips" => "Elfelejtett adminisztrátori jelszó: <br/> Kérjük jelentkezzen szerver törli <b>./data/system/install.lock</b> vissza; <br/><br/> Nem rendszergazdai Elfelejtett jelszó: <br/> Kérjük, lépjen kapcsolatba a rendszergazda gombot!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "módosított",
"last_time" => "utolsó látogatás",
"sort_type" => "Rendezés",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "nyilvános könyvtár",
"system_path_not_change" => "System könyvtárba, nem lehet módosítani",
"file" => "akta",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "pratinjau kantor, kebutuhan kodexplorer akan dikerahkan di luar jaringan<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">rincian></a>",
"config_save_error_auth" => "Gagal untuk menyimpan konfigurasi, administrator dilarang hak istimewa ini!",
"config_save_error_file" => "Kesalahan, file tidak dapat ditulis!",
"beautify_html" => "Kode html beautifier",
"beautify_css" => "kode css generasi beautifier",
"beautify_js" => "js kode kecantikan",
"beautify_code" => "kode Formatter",
"shortcut" => "Shortcuts",
"use_free" => "Terus menggunakan versi gratis",
"learn_more" => "Pelajari Lebih Lanjut",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Direktori tidak dapat ditulisi, mengatur direktori dan semua subdirektori untuk mencoba lagi setelah membaca-menulis!",
"menu_name" => "nama menu",
"menu_hidden" => "menyembunyikan",
"menu_show" => "pameran",
@ -228,7 +227,7 @@ return array(
"install_login" => "Anda dapat menggunakan login account berikut",
"install_enter" => "sistem",
"install_user_default" => "Administrator: {0} / (bawah menetapkan password) <br/> Rata-rata pengguna: {1} <br/> pengguna tamu: {2}",
"login_root_password" => "administrator password",
"login_root_password" => "Mengatur password Administrator",
"login_root_password_tips" => "Mengatur password administrator!",
"forget_password" => "Lupa kata sandi Anda",
"forget_password_tips" => "Lupa Password Administrator: <br/> Harap masuk server yang menghapus <b>./data/system/install.lock</b> ulang; <br/><br/> Non-administrator Lupa Password: <br/> Silahkan hubungi administrator untuk me-reset!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "dimodifikasi",
"last_time" => "Kunjungan terakhir",
"sort_type" => "Urutkan berdasarkan",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "direktori umum",
"system_path_not_change" => "direktori sistem, tidak dapat diubah",
"file" => "berkas",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "ufficio anteprima, kodexplorer bisogno di essere distribuito al di fuori della rete<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">dettagli></a>",
"config_save_error_auth" => "Impossibile salvare la configurazione, l'amministratore ha vietato questo privilegio!",
"config_save_error_file" => "Errore, il file non è scrivibile!",
"beautify_html" => "codice html beautifier",
"beautify_css" => "Code Beautifier css generazione",
"beautify_js" => "codice js abbellimento",
"beautify_code" => "Codice Formatter",
"shortcut" => "Tasti di scelta rapida",
"use_free" => "Continuare a utilizzare la versione gratuita",
"learn_more" => "Approfondisci",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directory non è scrivibile, impostare la directory e tutte le sottodirectory di provare nuovamente dopo la lettura-scrittura!",
"menu_name" => "nome menu",
"menu_hidden" => "nascondere",
"menu_show" => "display",
@ -228,7 +227,7 @@ return array(
"install_login" => "È possibile utilizzare il seguente conto di login",
"install_enter" => "Il sistema",
"install_user_default" => "Administrator: {0} / (sotto impostare una password) <br/> utente medio: {1} <br/> Gli utenti ospiti: {2}",
"login_root_password" => "password amministratore",
"login_root_password" => "Impostare la password dell'amministratore",
"login_root_password_tips" => "Impostare una password di amministratore!",
"forget_password" => "Hai dimenticato la password",
"forget_password_tips" => "Hai dimenticato la password di amministratore: <br/> Si prega di log del server eliminare <b>./data/system/install.lock</b> resettare; <br/><br/> Non amministratore Forgot Password: <br/> Si prega di contattare l&#39;amministratore per ripristinare!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modificato",
"last_time" => "Ultima Visita",
"sort_type" => "Ordina per",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "directory pubblica",
"system_path_not_change" => "directory di sistema, non può essere modificato",
"file" => "file",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "オフィスプレビュー、kodexplorerは、ネットワーク<br/><br/><a href=\"http://kalcaddle.m/office.html\" target=\"_blank\">詳細></a>",
"config_save_error_auth" => "設定を保存できませんでした、管理者がこの特権を禁止しました!",
"config_save_error_file" => "エラー、ファイル書き込みできません!",
"beautify_html" => "HTMLコードのビューティ",
"beautify_css" => "CSS世代のコードビューティ",
"beautify_js" => "jsのコード美化",
"beautify_code" => "コードフォーマッター",
"shortcut" => "ショートカット",
"use_free" => "無料版を使用し続けます",
"learn_more" => "詳細はこちら",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "ディレクトリが書き込み可能でない、読み書きの後に再試行するディレクトリとすべてのサブディレクトリを設定します!",
"menu_name" => "メニュー名",
"menu_hidden" => "隠します",
"menu_show" => "ディスプレイ",
@ -228,7 +227,7 @@ return array(
"install_login" => "あなたは、次のアカウントのログイン情報を使用することができます",
"install_enter" => "システム",
"install_user_default" => "管理者:{0} /(パスワードの設定の下) <br/>平均的なユーザー:{1} <br/>ゲストユーザ:{2}",
"login_root_password" => "管理者パスワード",
"login_root_password" => "Administratorのパスワードを設定します",
"login_root_password_tips" => "管理者パスワードを設定します!",
"forget_password" => "パスワードを忘れました",
"forget_password_tips" => "管理者パスワードを忘れた場合: <br/>サーバーがリセット<b>./data/system/install.lock</b>削除ログインしてください。 <br/><br/>非管理者がパスワードを忘れました: <br/>リセットするには、管理者に連絡してください!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "修正されました",
"last_time" => "最終ログイン",
"sort_type" => "並べ替え",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "公開ディレクトリ",
"system_path_not_change" => "Systemディレクトリ、変更することはできません",
"file" => "ファイル",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "사무실 미리보기, kodexplorer 필요가 네트워크 외부에 배포 할<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blan\"k>정보></a>",
"config_save_error_auth" => "구성을 저장하지 못했습니다 관리자는이 권한을 금지!",
"config_save_error_file" => "오류, 쓸 수 없습니다 파일!",
"beautify_html" => "HTML 코드를 아름답게",
"beautify_css" => "CSS를 생성 코드를 아름답게",
"beautify_js" => "JS 코드 미화",
"beautify_code" => "코드 포매터",
"shortcut" => "바로 가기",
"use_free" => "무료 버전을 계속 사용",
"learn_more" => "자세히보기",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "디렉토리에 쓰기 권한이 없습니다 디렉토리를 설정하고 모든 하위 디렉토리는-읽기 쓰기 후 다시 시도!",
"menu_name" => "메뉴 이름",
"menu_hidden" => "숨기기",
"menu_show" => "디스플레이",
@ -228,7 +227,7 @@ return array(
"install_login" => "다음 계정 로그인을 사용할 수 있습니다",
"install_enter" => "시스템",
"install_user_default" => "관리자 : {0} / (암호를 설정 아래) <br/> 평균 사용자 : {1} <br/> 게스트 사용자 : {2}",
"login_root_password" => "관리자 암호",
"login_root_password" => "관리자 암호를 설정",
"login_root_password_tips" => "관리자 암호를 설정!",
"forget_password" => "비밀번호를 잊어 버렸",
"forget_password_tips" => "관리자 암호를 잊어 버렸 : <br/> 다시 <b>./data/system/install.lock</b> 삭제 서버에 로그인하십시오; <br/><br/> 비 관리자가 비밀번호를 잊어 버렸 : <br/> 재설정하려면 관리자에게 문의하시기 바랍니다!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "수정",
"last_time" => "최근 방문",
"sort_type" => "정렬",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "공공 디렉토리",
"system_path_not_change" => "시스템 디렉토리, 수정할 수 없습니다",
"file" => "파일",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "biuro peržiūra, kodexplorer turi būti panaudotos už tinklo ribų<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">Išsamiau></a>",
"config_save_error_auth" => "Nepavyko išsaugoti konfigūraciją, administratorius uždraudė šią privilegiją!",
"config_save_error_file" => "Klaida, byla negali rašyti!",
"beautify_html" => "HTML kodas beautifier",
"beautify_css" => "CSS-karta kodas beautifier",
"beautify_js" => "JS kodas gražinimo",
"beautify_code" => "kodas Formatuotojas",
"shortcut" => "Nuorodos",
"use_free" => "Ir toliau naudoti nemokamą versiją",
"learn_more" => "sužinoti daugiau",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Direktorija neįrašomi, nustatykite katalogą ir visus pakatalogius pabandyti dar kartą po to, kai skaitymo-rašymo!",
"menu_name" => "Meniu pavadinimas",
"menu_hidden" => "paslėpti",
"menu_show" => "displėjus",
@ -228,7 +227,7 @@ return array(
"install_login" => "Jūs galite naudoti šią sąskaitą Prisijungimas",
"install_enter" => "sistema",
"install_user_default" => "Administratorius: {0} / (toliau nustatyti slaptažodį) <br/> Vidutinis vartotojas: {1} <br/> Svečių vartotojai: {2}",
"login_root_password" => "administratoriaus slaptažodis",
"login_root_password" => "Nustatyti administratoriaus slaptažodį",
"login_root_password_tips" => "Nustatyti administratoriaus slaptažodį!",
"forget_password" => "Pamiršote slaptažodį",
"forget_password_tips" => "Pamiršote administratoriaus slaptažodį: <br/> Prašome prisijungti serverio ištrinti <b>./data/system/install.lock</b> naujo; <br/><br/> Ne administratorius Pamiršote slaptažodį: <br/> Prašome susisiekti su administratoriumi, kad iš naujo!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modifikuotas",
"last_time" => "Paskutinį kartą lankėsi",
"sort_type" => "Rūšiuoti pagal",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "Visuomenės katalogas",
"system_path_not_change" => "Sistemos katalogas, negali būti pakeistas",
"file" => "byla",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "office preview, kodexplorer noodzaak om buiten het netwerk worden ingezet<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">Home></a>",
"config_save_error_auth" => "Kan de configuratie op te slaan, de beheerder verboden dit voorrecht!",
"config_save_error_file" => "Fout, het bestand niet beschrijfbaar!",
"beautify_html" => "html code beautifier",
"beautify_css" => "css-generatie code beautifier",
"beautify_js" => "js code verfraaiing",
"beautify_code" => "code Formatter",
"shortcut" => "shortcuts",
"use_free" => "Blijf de gratis versie gebruiken",
"learn_more" => "Meer info",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directory is niet beschrijfbaar, stelt u de map en alle submappen om opnieuw te proberen na het lezen en schrijven!",
"menu_name" => "naam menu",
"menu_hidden" => "verbergen",
"menu_show" => "tonen",
@ -228,7 +227,7 @@ return array(
"install_login" => "U kunt de volgende account login gebruiken",
"install_enter" => "het systeem",
"install_user_default" => "Administrateur: {0} / (hieronder een wachtwoord instellen) <br/> Gemiddelde gebruiker: {1} <br/> Gast gebruikers: {2}",
"login_root_password" => "Administrator-wachtwoord",
"login_root_password" => "Stel het beheerderswachtwoord",
"login_root_password_tips" => "Stel een beheerderswachtwoord!",
"forget_password" => "Wachtwoord vergeten",
"forget_password_tips" => "Wachtwoord Administrator-wachtwoord: <br/> Gelieve server log verwijderen <b>./data/system/install.lock</b> resetten; <br/><br/> Non-administrator Wachtwoord vergeten: <br/> Neem contact op met de beheerder om opnieuw in te stellen!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "gewijzigd",
"last_time" => "laatste Bezoek",
"sort_type" => "Sorteren op",
"time_type" => "d/m/Y H:i",
"time_type_info" => "d/m/Y H:i",
"time_type" => "d/m/Y H:i:s",
"time_type_info" => "d/m/Y H:i:s",
"public_path" => "openbare directory",
"system_path_not_change" => "System directory, kan niet worden gewijzigd",
"file" => "file",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "kontor forhåndsvisning, kodexplorer behov for å bli utplassert utenfor nettverket<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">detaljer></a>",
"config_save_error_auth" => "Kunne ikke lagre konfigurasjonen, administrator utestengt dette privilegiet!",
"config_save_error_file" => "Feil, fil ikke skrivbar!",
"beautify_html" => "html kode beautifier",
"beautify_css" => "css-generasjonen kode beautifier",
"beautify_js" => "js kode beautification",
"beautify_code" => "kode Atter",
"shortcut" => "snarveier",
"use_free" => "Fortsett å bruke gratisversjonen",
"learn_more" => "Lær mer",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Katalogen er ikke skrivbar, sett katalogen og alle underkataloger for å prøve på nytt etter at lese-skrive!",
"menu_name" => "Menynavn navn~~POS=HEADCOMP",
"menu_hidden" => "Skjul",
"menu_show" => "utstilling",
@ -228,7 +227,7 @@ return array(
"install_login" => "Du kan bruke følgende konto login",
"install_enter" => "systemet",
"install_user_default" => "Administrator: {0} / (under angi et passord) <br/> Gjennomsnittlig bruker: {1} <br/> Gjestebrukere: {2}",
"login_root_password" => "administratorpassord",
"login_root_password" => "Angi administratorpassordet",
"login_root_password_tips" => "Lagt inn et passord!",
"forget_password" => "Glemt passord",
"forget_password_tips" => "Glemt Administrator passord: <br/> Vennligst logg server slette <b>./data/system/install.lock</b> null; <br/><br/> Non-administrator Glemt Passord: <br/> Ta kontakt med administratoren for å tilbakestille!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modifisert",
"last_time" => "Siste besøk",
"sort_type" => "Sorter etter",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "offentlig katalog",
"system_path_not_change" => "System katalog, kan ikke endres",
"file" => "File",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "podgląd biura, kodexplorer trzeba być rozmieszczeni poza siecią<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">szczegóły></a>",
"config_save_error_auth" => "Nie udało się zapisać konfigurację, administrator zakaz ten przywilej!",
"config_save_error_file" => "Błąd Nie można zapisać pliku!",
"beautify_html" => "Kod html beautifier",
"beautify_css" => "Kod CSS generacji beautifier",
"beautify_js" => "Kod js upiększanie",
"beautify_code" => "Kod Formatter",
"shortcut" => "Skróty",
"use_free" => "Nadal korzystać z darmowej wersji",
"learn_more" => "Dowiedz się więcej",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Katalog nie jest zapisywalny, ustaw katalogu i wszystkich podkatalogach spróbować ponownie po odczytu!",
"menu_name" => "Nazwa menu",
"menu_hidden" => "ukryć",
"menu_show" => "pokaz",
@ -228,7 +227,7 @@ return array(
"install_login" => "Można użyć konta następujące logowanie",
"install_enter" => "System",
"install_user_default" => "Administrator: {0} / (poniżej ustawić hasło) <br/> Przeciętny użytkownik: {1} <br/> użytkowników Gości: {2}",
"login_root_password" => "Hasło administratora",
"login_root_password" => "Ustaw hasło administratora",
"login_root_password_tips" => "Ustaw hasło administratora!",
"forget_password" => "Nie pamiętasz hasła",
"forget_password_tips" => "Zapomniałeś hasło administratora: <br/> serwer Zaloguj usuwać <b>./data/system/install.lock</b> zresetować; <br/><br/> Nieadministratorzy Przypomnienie hasła: <br/> Proszę skontaktować się z administratorem, aby zresetować!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "zmodyfikowany",
"last_time" => "Ostatnia wizyta",
"sort_type" => "Sortuj według",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "katalog publiczny",
"system_path_not_change" => "katalog systemowy, nie mogą być modyfikowane",
"file" => "plik",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "pré-visualização escritório, necessidade kodexplorer para ser implantado fora da rede<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">detalhes></a>",
"config_save_error_auth" => "Falha ao salvar a configuração, o administrador proibiu esse privilégio!",
"config_save_error_file" => "De erro, o arquivo não pode ser escrito!",
"beautify_html" => "html embelezador de código",
"beautify_css" => "css-geração embelezador de código",
"beautify_js" => "js embelezamento código",
"beautify_code" => "código Formatter",
"shortcut" => "Atalhos",
"use_free" => "Continuar a usar a versão gratuita",
"learn_more" => "Saiba mais",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Diretório não é gravável, definir o diretório e todos os subdiretórios para tentar novamente após a leitura e escrita!",
"menu_name" => "nome do menu",
"menu_hidden" => "esconder",
"menu_show" => "exibição",
@ -228,7 +227,7 @@ return array(
"install_login" => "Você pode usar o seguinte login da conta",
"install_enter" => "o sistema",
"install_user_default" => "Administrador: {0} / (abaixo de definir uma senha) <br/> usuário médio: {1} <br/> Os usuários convidados: {2}",
"login_root_password" => "Senha de administrador",
"login_root_password" => "Definir a senha do administrador",
"login_root_password_tips" => "Defina uma senha de administrador!",
"forget_password" => "Esqueceu sua senha",
"forget_password_tips" => "Esqueceu a senha de administrador: <br/> Faça login servidor eliminar <b>./data/system/install.lock</b> redefinir; <br/><br/> Não-administrador Esqueceu a senha: <br/> Entre em contato com o administrador para redefinir!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modificada",
"last_time" => "Última Visita",
"sort_type" => "Classificar por",
"time_type" => "d/m/Y H:i",
"time_type_info" => "d/m/Y H:i",
"time_type" => "d/m/Y H:i:s",
"time_type_info" => "d/m/Y H:i:s",
"public_path" => "diretório público",
"system_path_not_change" => "diretório do sistema, não pode ser modificado",
"file" => "arquivo",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "previzualizare birou, nevoia kodexplorer care urmează să fie desfășurați în afara rețelei<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">detalii></a>",
"config_save_error_auth" => "Nu a putut salva configurația, administratorul a interzis acest privilegiu!",
"config_save_error_file" => "Eroare, fișier nu seteze acest atribut!",
"beautify_html" => "cod html beautifier",
"beautify_css" => "cod css generație beautifier",
"beautify_js" => "cod js infrumusetarea",
"beautify_code" => "cod Formatter",
"shortcut" => "Comenzile rapide",
"use_free" => "Continuați să utilizați versiunea gratuită",
"learn_more" => "Află mai multe",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Director nu este inscriptibil, setați directorul și toate subdirectoarele pentru a încerca din nou după citire-scriere!",
"menu_name" => "numele meniului",
"menu_hidden" => "ascunde",
"menu_show" => "afișa",
@ -228,7 +227,7 @@ return array(
"install_login" => "Puteți utiliza următoarea conectare ale contului",
"install_enter" => "sistemul",
"install_user_default" => "Administrator: {0} / (de mai jos seta o parolă) <br/> utilizator mediu: {1} <br/> utilizatori vizitatori: {2}",
"login_root_password" => "administrator Password",
"login_root_password" => "Setați parola de administrator",
"login_root_password_tips" => "Setați o parolă de administrator!",
"forget_password" => "Ați uitat parola",
"forget_password_tips" => "Administrator Password a uitat: <br/> Vă rugăm să vă conectați serverul șterge <b>./data/system/install.lock</b> reset; <br/><br/> Non-administrator Ai uitat parola: <br/> Vă rugăm să contactați administratorul pentru a reseta!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modificată",
"last_time" => "ultima vizită",
"sort_type" => "sortează după",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "directorul public",
"system_path_not_change" => "Directorul de sistem, nu pot fi modificate",
"file" => "fișier",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "офис предварительного просмотра, kodexplorer необходимости быть развернуты за пределами сети<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">детали></a>",
"config_save_error_auth" => "Не удалось сохранить конфигурацию, администратор запретил эту привилегию!",
"config_save_error_file" => "Ошибка, файл недоступен для записи!",
"beautify_html" => "HTML код Beautifier",
"beautify_css" => "код Beautifier CSS поколения",
"beautify_js" => "JS код благоустройстве",
"beautify_code" => "Код Formatter",
"shortcut" => "Клавиши быстрого доступа",
"use_free" => "Продолжать использовать бесплатную версию",
"learn_more" => "Подробнее",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Справочник не доступна для записи, установить каталог и все подкаталоги, чтобы попробовать еще раз после того, как чтение-запись!",
"menu_name" => "название меню",
"menu_hidden" => "скрывать",
"menu_show" => "дисплей",
@ -228,7 +227,7 @@ return array(
"install_login" => "Вы можете использовать следующий логин",
"install_enter" => "система",
"install_user_default" => "Администратор: {0} / (ниже установить пароль) <br/> Средний пользователь: {1} <br/> пользователи гостей: {2}",
"login_root_password" => "Пароль администратора",
"login_root_password" => "Установить пароль администратора",
"login_root_password_tips" => "Установить пароль администратора!",
"forget_password" => "Забыли пароль",
"forget_password_tips" => "Забыли пароль администратора: <br/> Пожалуйста , войдите сервер удалить <b>./data/system/install.lock</b> сброса; <br/><br/> Non-администратора Забыли пароль: <br/> Пожалуйста, обратитесь к администратору, чтобы сбросить!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "модифицированный",
"last_time" => "Последний визит",
"sort_type" => "Сортировка по",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "Открытый каталог",
"system_path_not_change" => "Системный каталог, не может быть изменен",
"file" => "файл",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "කාර්යාලය පෙරදසුනෙහි, kodexplorer ජාලය<br/><br/><a href=\"http://kalcaddle.om/office.html\" target=\"_blank\">විස්තර></a>",
"config_save_error_auth" => "වින්යාස බේරා ගැනීමට අපොහොසත් විය, පරිපාලක වරප්රසාද තහනම්!",
"config_save_error_file" => "දෝෂය, ගොනුව, ලිවිය-හැකි ගොනුවක් නොවේ!",
"beautify_html" => "html කේතය beautifier",
"beautify_css" => "CSS පරම්පරාවේ කේතය beautifier",
"beautify_js" => "JS කේතය අලංකරණය",
"beautify_code" => "කේතය හැඩසවිගන්වනය",
"shortcut" => "කෙටි මාර්ග",
"use_free" => "නිදහස් අනුවාදය භාවිතා කිරීමට දිගටම",
"learn_more" => "තවත් ඉගෙන ගන්න",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "ඩිරෙක්ටරියට ලිවිය නොහැකි, කියවීමට-ලියන්න පසුව නැවත උත්සාහ කරන්න ඩිරෙක්ටරියේ සහ සියලු උප බහලුම් තබා!",
"menu_name" => "මෙනු නම",
"menu_hidden" => "සඟවන්න",
"menu_show" => "ප්රදර්ශනය",
@ -228,7 +227,7 @@ return array(
"install_login" => "ඔබ පහත සඳහන් ගිණුම් පිවිසුම් භාවිතා කළ හැකිය",
"install_enter" => "මෙම පද්ධතිය",
"install_user_default" => "පරිපාලක: {0} / (නියම මුරපදයක් පහත දක්වා ඇති) <br/> සාමාන්ය භාවිත: {1} <br/> ආගන්තුක පරිශීලකයන්ට: {2}",
"login_root_password" => "පරිපාලක මුරපදය",
"login_root_password" => "පරිපාලක මුරපදය සකසන්න",
"login_root_password_tips" => "පරිපාලක මුරපදය සකසන්න!",
"forget_password" => "ඔබගේ මුර පදය අමතකද",
"forget_password_tips" => "අමතකද පරිපාලක මුරපදය: <br/> සේවාදායකය නැවත සකස් <b>./data/system/install.lock</b> මකා ලොග් වන්න; <br/><br/> නොවන පරිපාලක මුරපදය අමතකද: <br/> නැවත සකස් කිරීමට පරිපාලක සම්බන්ධ කරන්න!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "නවීකරණය කරන ලද",
"last_time" => "පසුගිය සංචාරය",
"sort_type" => "වර්ග විසින්",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "රාජ්ය නාමාවලියේ",
"system_path_not_change" => "පද්ධතිය බහලුම, වෙනස් කළ නොහැකියි",
"file" => "ගොනුව",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "office náhľad, kodexplorer potreba byť nasadení mimo sieť<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">podrobnosti></a>",
"config_save_error_auth" => "Nepodarilo sa uložiť konfiguráciu, administrátor zakázal túto výsadu!",
"config_save_error_file" => "Chyba, súbor nie je zapisovateľný!",
"beautify_html" => "html kód Beautifier",
"beautify_css" => "css-generovanie kódu Beautifier",
"beautify_js" => "js kód skrášľovania",
"beautify_code" => "code Formatter",
"shortcut" => "skratky",
"use_free" => "Naďalej používať bezplatnú verziu",
"learn_more" => "viac informácií",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Adresár nie je zapisovateľný, nastaviť adresár a všetky podadresáre skúsiť znovu po čítaní písať!",
"menu_name" => "názov ponuky",
"menu_hidden" => "skryť",
"menu_show" => "zobraziť",
@ -228,7 +227,7 @@ return array(
"install_login" => "Môžete použiť nasledovné prihlasovacie konto",
"install_enter" => "systém",
"install_user_default" => "Administrátor: {0} / (dole nastaviť heslo) <br/> Priemerný užívateľ: {1} <br/> Užívatelia hodnotenie: {2}",
"login_root_password" => "heslo správcu",
"login_root_password" => "Nastaviť heslo správcu",
"login_root_password_tips" => "Nastaviť heslo správcu!",
"forget_password" => "zabudnuté heslo",
"forget_password_tips" => "Zabudli heslo správcu: <br/> Prosím prihláste servera zmazať <b>./data/system/install.lock</b> resetovať; <br/><br/> Non-správcu Zabudli ste heslo: <br/> Obráťte sa na správcu resetovať!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modifikovaná",
"last_time" => "Posledná návšteva",
"sort_type" => "triediť podľa",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "verejný adresár",
"system_path_not_change" => "Adresár systému, nemôže byť modifikovaný",
"file" => "súbor",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "urad predogled, kodexplorer treba bodo razporejeni izven mreže<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">podrobnosti></a>",
"config_save_error_auth" => "Ni bilo mogoče shraniti nastavitve, upravitelj prepovedala ta privilegij!",
"config_save_error_file" => "Napaka, datoteka ne pišemo!",
"beautify_html" => "html kodo beautifier",
"beautify_css" => "css generacije koda beautifier",
"beautify_js" => "js koda polepšanje",
"beautify_code" => "code Formatter",
"shortcut" => "Bližnjice",
"use_free" => "Še naprej uporabljajo brezplačno različico",
"learn_more" => "Več",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Imenik ne more pisati, nastavite mapo in vse podmape poskusiti znova, ko branje, pisanje!",
"menu_name" => "ime menija",
"menu_hidden" => "Skrij",
"menu_show" => "zaslon",
@ -228,7 +227,7 @@ return array(
"install_login" => "Lahko uporabite naslednje prijavo v račun",
"install_enter" => "sistem",
"install_user_default" => "Skrbnik: {0} / (spodaj nastaviti geslo) <br/> Povprečni uporabnik: {1} <br/> Uporabniki gost: {2}",
"login_root_password" => "administrator Password",
"login_root_password" => "Nastavite skrbniško geslo",
"login_root_password_tips" => "Nastaviti skrbniško geslo!",
"forget_password" => "Pozabil geslo",
"forget_password_tips" => "Ste pozabili skrbniško geslo: <br/> Prosimo, da se prijavite strežnika izbrisati <b>./data/system/install.lock</b> ponastavi; <br/><br/> Non-administrator Pozabljeno geslo: <br/> Obrnite se na skrbnika za ponastavitev!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "Spremenjen",
"last_time" => "zadnji obisk",
"sort_type" => "Razvrsti po",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "javni imenik",
"system_path_not_change" => "Sistem imenik, ni mogoče spreminjati",
"file" => "datoteka",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "канцеларија преглед, кодекплорер морати да буде примењен ван мреже<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">детаљи></a>",
"config_save_error_auth" => "Није успела да сачува конфигурацију, администратор забранио ту привилегију!",
"config_save_error_file" => "Грешка, филе не може писати!",
"beautify_html" => "ХТМЛ код беаутифиер",
"beautify_css" => "ЦСС-генерација код беаутифиер",
"beautify_js" => "јс код улепшавање",
"beautify_code" => "kod форматирање",
"shortcut" => "пречице",
"use_free" => "Наставите да користите бесплатну верзију",
"learn_more" => "Леарн Море",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Директоријум не може писати, подесите директоријум и све подименици да покушате поново после читање и писање!",
"menu_name" => "ime мени",
"menu_hidden" => "сакрити",
"menu_show" => "дисплеј",
@ -228,7 +227,7 @@ return array(
"install_login" => "Можете користити следећу пријављивањем",
"install_enter" => "sistem",
"install_user_default" => "Администратор: {0} / (испод поставите лозинку) <br/> Просечан корисник: {1} <br/> Гостима: {2}",
"login_root_password" => "администратор Лозинка",
"login_root_password" => "Подесите администраторску лозинку",
"login_root_password_tips" => "Задавање лозинке администратора!",
"forget_password" => "Заборавили сте лозинку",
"forget_password_tips" => "Заборавио Администратор Пассворд: <br/> Молимо вас пријавите сервер обрисати <b>./дата/систем/инсталл.лоцк</b> ресет; <br/><br/> Нон-администратор Форгот Пассворд: <br/> Контактирајте администратора за ресет!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "Модифиед",
"last_time" => "Задња посета",
"sort_type" => "Сортирај по",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "јавни регистар",
"system_path_not_change" => "Систем директоријум, не може се мењати",
"file" => "фајл",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "kontor förhandsvisning, kodexplorer behov som ska utplaceras utanför nätverket<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">detaljer></a>",
"config_save_error_auth" => "Det gick inte att spara konfigurationen administratören förbjöd detta privilegium!",
"config_save_error_file" => "Fel, fil inte skrivbar!",
"beautify_html" => "html-kod beautifier",
"beautify_css" => "css-kod som genererar beautifier",
"beautify_js" => "js-kod försköning",
"beautify_code" => "kod Formatter",
"shortcut" => "Genvägar",
"use_free" => "Fortsätt att använda den fria versionen",
"learn_more" => "Läs mer",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Katalog är inte skrivbar, ange katalogen och alla underkataloger för att försöka igen efter läs- och skriv!",
"menu_name" => "meny~~POS=TRUNC namnet~~POS=HEADCOMP",
"menu_hidden" => "dölja",
"menu_show" => "display",
@ -228,7 +227,7 @@ return array(
"install_login" => "Du kan använda följande inloggnings",
"install_enter" => "systemet",
"install_user_default" => "Administratör: {0} / (nedan ange ett lösenord) <br/> Genomsnittlige användaren: {1} <br/> Gäster: {2}",
"login_root_password" => "administratörslösenord",
"login_root_password" => "Ange administratörslösenordet",
"login_root_password_tips" => "Ange ett administratörslösenord!",
"forget_password" => "Har du glömt ditt lösenord",
"forget_password_tips" => "Glömt administratörslösenord: <br/> Logga server bort <b>./data/system/install.lock</b> återställa; <br/><br/> Icke-administratör du glömt ditt lösenord: <br/> Kontakta administratören för att återställa!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modifierad",
"last_time" => "Senast besökt",
"sort_type" => "Sortera efter",
"time_type" => "Y / m / d h: i: s",
"time_type_info" => "Y / m / d h: i: s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "offentliga katalogen",
"system_path_not_change" => "System katalog, kan inte ändras",
"file" => "fil",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "அலுவலக முன்னோட்ட, kodexplorer தேவை நெட்வொர்க் வெளியே நிறுத்தப்பட்டுள்ளன வேண்டும்<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">விவரங்கள்></a>",
"config_save_error_auth" => "கட்டமைப்பு சேமிக்க தவறியது, நிர்வாகி, இந்த சலுகை தடை!",
"config_save_error_file" => "பிழை, எழுத முடியாது தாக்கல்!",
"beautify_html" => "HTML குறியீடு beautifier",
"beautify_css" => "CSS தலைமுறை குறியீடு beautifier",
"beautify_js" => "JS குறியீடு அழகுபடுத்தல்",
"beautify_code" => "குறியீடு Formatter",
"shortcut" => "குறுக்குவழிகள்",
"use_free" => "இலவச பதிப்பை பயன்படுத்த தொடர்ந்து",
"learn_more" => "மேலும் அறிய",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "கோப்பகம் எழுத முடியாதது, அடைவு அமைக்க மற்றும் அனைத்து துணை அடைவுகள் பிறகு படிக்க-எழுத மீண்டும் முயற்சி செய்ய!",
"menu_name" => "பட்டி பெயர்",
"menu_hidden" => "மறை",
"menu_show" => "காட்சி",
@ -228,7 +227,7 @@ return array(
"install_login" => "நீங்கள் பின்வரும் கணக்கு உள்நுழைவு பயன்படுத்த முடியும்",
"install_enter" => "அமைப்பு",
"install_user_default" => "நிர்வாகி: {0} / (ஒரு கடவுச்சொல்லை அமைக்க கீழே) <br/> சராசரி பயனர்: {1} <br/> விருந்தினர் பயனர்கள்: {2}",
"login_root_password" => "நிர்வாகி கடவுச்சொல்",
"login_root_password" => "நிர்வாகி கடவுச்சொல்லை அமைக்கவும்",
"login_root_password_tips" => "ஒரு நிர்வாகி கடவுச்சொல்லை அமைக்க!",
"forget_password" => "உங்கள் கடவுச்சொல்லை மறந்து விட்டீர்களா",
"forget_password_tips" => "நிர்வாகி கடவுச்சொல் மறந்துவிட்டதா: <br/> சர்வர் தயவு செய்து புகுபதிகை செய்க <b>./data/system/install.lock</b> மீட்டமைக்க அழித்தல்; <br/><br/> நிர்வாகி அல்லாத கடவுச்சொல் மறந்து விட்டீர்களா: <br/> மீட்டமைக்க நிர்வாகியைத் தொடர்பு கொள்ளவும்!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "திருத்தப்பட்ட",
"last_time" => "கடைசி வருகை",
"sort_type" => "வரிசைப்படுத்த மூலம்",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "பொது அடைவு",
"system_path_not_change" => "கணினி அடைவு, மாற்ற முடியாது",
"file" => "கோப்பு",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "ภาพตัวอย่างสำนักงานจำเป็น kodexplorer ที่จะใช้งานนอกเครือข่าย<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">รายละเอียด></a>",
"config_save_error_auth" => "ล้มเหลวในการบันทึกการตั้งค่าผู้ดูแลระบบห้ามสิทธิพิเศษนี้!",
"config_save_error_file" => "ข้อผิดพลาดไฟล์ไม่สามารถเขียนได้!",
"beautify_html" => "รหัส html สวยงาม",
"beautify_css" => "โค้ด CSS รุ่นสวยงาม",
"beautify_js" => "รหัส JS งาม",
"beautify_code" => "รหัสฟอร์แมต",
"shortcut" => "ทางลัด",
"use_free" => "ยังคงใช้รุ่นฟรี",
"learn_more" => "เรียนรู้เพิ่มเติม",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "ไดเรกทอรีที่ไม่สามารถเขียนได้ตั้งไดเรกทอรีและไดเรกทอรีย่อยทั้งหมดเพื่อลองอีกครั้งหลังจากที่อ่านเขียน!",
"menu_name" => "ชื่อเมนู",
"menu_hidden" => "ปิดบัง",
"menu_show" => "แสดงผล",
@ -228,7 +227,7 @@ return array(
"install_login" => "คุณสามารถใช้เข้าสู่ระบบบัญชีดังต่อไปนี้",
"install_enter" => "ระบบ",
"install_user_default" => "ผู้ดูแลระบบ: {0} / (ด้านล่างตั้งค่ารหัสผ่าน) <br/> ผู้ใช้งานเฉลี่ย: {1} <br/> บุคคลทั่วไป: {2}",
"login_root_password" => "รหัสผ่านผู้ดูแล",
"login_root_password" => "ตั้งค่ารหัสผ่านผู้ดูแลระบบ",
"login_root_password_tips" => "ตั้งค่ารหัสผ่านของผู้ดูแลระบบ!",
"forget_password" => "ลืมรหัสผ่านของคุณ",
"forget_password_tips" => "ลืมรหัสผ่านผู้ดูแลระบบ: <br/> กรุณาเข้าสู่ระบบเซิร์ฟเวอร์ลบ <b>./data/system/install.lock</b> รีเซ็ต; <br/><br/> ไม่ใช่ผู้ดูแลลืมรหัสผ่าน: <br/> กรุณาติดต่อผู้ดูแลระบบเพื่อรีเซ็ต!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "ดัดแปลง",
"last_time" => "เข้ามาครั้งล่าสุด",
"sort_type" => "เรียงลำดับตาม",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "ไดเรกทอรีสาธารณะ",
"system_path_not_change" => "ไดเรกทอรีระบบไม่สามารถแก้ไขได้",
"file" => "ไฟล์",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "ofis önizleme, kodexplorer ihtiyaç ağı dışında konuşlanmış olması<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blan\"k>ayrıntıları></a>",
"config_save_error_auth" => "Yapılandırma kaydedilemedi, yönetici bu ayrıcalığı yasaklandı!",
"config_save_error_file" => "Hata, yazılabilir değil dosya!",
"beautify_html" => "html kodu beautifier",
"beautify_css" => "css nesil kodu beautifier",
"beautify_js" => "js kodu güzelleştirme",
"beautify_code" => "code Formatter",
"shortcut" => "Kısayollar",
"use_free" => "ücretsiz sürümünü kullanmaya devam",
"learn_more" => "Daha fazla Bilgi",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Dizin yazılabilir değil, dizin ayarlamak ve tüm alt dizinleri okunan yazma sonra tekrar deneyin!",
"menu_name" => "Menü adı",
"menu_hidden" => "gizlemek",
"menu_show" => "ekran",
@ -228,7 +227,7 @@ return array(
"install_login" => "Aşağıdaki hesap giriş kullanabilirsiniz",
"install_enter" => "sistem",
"install_user_default" => "Yönetici: {0} / (bir şifre koymak aşağıda) <br/> Ortalama kullanıcı: {1} <br/> Misafir kullanıcılar: {2}",
"login_root_password" => "yönetici Şifresi",
"login_root_password" => "Yönetici parolasını ayarlayın",
"login_root_password_tips" => "Bir yönetici parolası ayarlayın!",
"forget_password" => "Şifrenizi unuttuysanız",
"forget_password_tips" => "Yönetici Şifremi Unuttum: <br/> sıfırlamak <b>./data/system/install.lock</b> silmek sunucu Yapın; <br/><br/> Yönetici olmayan Şifremi Unuttum: <br/> sıfırlamak için yöneticisine başvurun!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "modifiye",
"last_time" => "Son Ziyaret",
"sort_type" => "Sıralama",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "kamu dizini",
"system_path_not_change" => "Sistem dizini, değiştirilemez",
"file" => "dosya",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "офіс попереднього перегляду, kodexplorer необхідності бути розгорнуті за межами мережі<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">деталі></a>",
"config_save_error_auth" => "Неможливо зберегти конфігурацію, адміністрація відключила можливість використовувати цей привілей!",
"config_save_error_file" => "Помилка, файл недоступний для запису!",
"beautify_html" => "HTML код Beautifier",
"beautify_css" => "код Beautifier CSS покоління",
"beautify_js" => "JS код благоустрій",
"beautify_code" => "код Formatter",
"shortcut" => "Клавіші швидкого доступу",
"use_free" => "Продовжувати використовувати безкоштовну версію",
"learn_more" => "Детальніше",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Довідник недоступна для запису, встановити каталог і все підкаталоги, щоб спробувати ще раз після того, як читання-запис!",
"menu_name" => "назва меню",
"menu_hidden" => "приховувати",
"menu_show" => "дисплей",
@ -228,7 +227,7 @@ return array(
"install_login" => "Ви можете використовувати наступний логін",
"install_enter" => "система",
"install_user_default" => "Адміністратор: {0} / (нижче встановити пароль) <br/> Середній користувач: {1} <br/> користувачі гостей: {2}",
"login_root_password" => "пароль адміністратора",
"login_root_password" => "Встановити пароль адміністратора",
"login_root_password_tips" => "Встановити пароль адміністратора!",
"forget_password" => "Забули пароль",
"forget_password_tips" => "Забули пароль адміністратора: <br/> Будь ласка , увійдіть сервер видалити <b>./data/system/install.lock</b> скидання; <br/><br/> Non-адміністратора Забули пароль: <br/> Будь ласка, зверніться до адміністратора, щоб скинути!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "модифікований",
"last_time" => "Останній візит",
"sort_type" => "Сортування по",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "відкритий каталог",
"system_path_not_change" => "Системний каталог, не може бути змінений",
"file" => "файл",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "ofis korib, kodexplorer ehtiyoj tarmoqqa<br/><br/><a href=\"http://kalcaddle.om/office.html\" target=\"_blank\">details></a>",
"config_save_error_auth" => "konfiguratsiyani saqlab bo'lmadi, administrator, bu sharafga man!",
"config_save_error_file" => "Xato, yozib bo'lmaydi fayli!",
"beautify_html" => "html kodi beautifier",
"beautify_css" => "css-avlod kodi beautifier",
"beautify_js" => "js kod obodonlashtirish",
"beautify_code" => "Code Formatter",
"shortcut" => "Qisqa klavish",
"use_free" => "bepul versiyasini foydalanish davom",
"learn_more" => "Qo'shimcha ma'lumot",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directory yoziladigan emas, katalogini o'rnatish va barcha kichik katalog-o'qish, yozish, keyin yana harakat qilib ko'ring!",
"menu_name" => "Menu nomi",
"menu_hidden" => "yashir",
"menu_show" => "displey",
@ -228,7 +227,7 @@ return array(
"install_login" => "Siz quyidagi hisob Kirish foydalanishingiz mumkin",
"install_enter" => "tizim",
"install_user_default" => "Administrator: {0} / (a parol o&#39;rnating ostida) <br/> O&#39;rtacha Foydalanuvchi: {1} <br/> Mehmon foydalanuvchilar: {2}",
"login_root_password" => "Administrator Password",
"login_root_password" => "Administrator Parolni o'rnating",
"login_root_password_tips" => "ma'mur parol belgilash!",
"forget_password" => "Parolni unutdingizmi",
"forget_password_tips" => "Administrator Parolni unutdingizmi: <br/> qayta o&#39;rnatish <b>./data/system/install.lock</b> o&#39;chirish serverini kiring; <br/><br/> Non-administrator Parolni unutdingizmi: <br/> qayta o&#39;rnatish uchun boshqaruvchisiga murojaat qiling!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "tahrirlangan",
"last_time" => "oxirgi tashrif",
"sort_type" => "saralash",
"time_type" => "Y / m / d h: i: s",
"time_type_info" => "Y / m / d h: i: s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "umumiy katalog",
"system_path_not_change" => "System katalog, o'zgartirish mumkin emas",
"file" => "Fayl",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "xem trước văn phòng, cần kodexplorer được triển khai bên ngoài mạng<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">chi tiết></a>",
"config_save_error_auth" => "Không thể lưu cấu hình, quản trị cấm đặc quyền này!",
"config_save_error_file" => "Lỗi, tập tin không thể ghi!",
"beautify_html" => "beautifier code html",
"beautify_css" => "beautifier mã css hệ",
"beautify_js" => "js đẹp đang",
"beautify_code" => "Mã Formatter",
"shortcut" => "Phím tắt",
"use_free" => "Tiếp tục sử dụng phiên bản miễn phí",
"learn_more" => "Tìm hiểu thêm",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1",
"version_vip_2" => "VIP 2",
"version_vip_3" => "VIP 3",
"path_can_not_write_data" => "Directory là không ghi được, thiết lập các thư mục và tất cả các thư mục con để thử lại sau khi đọc-viết!",
"menu_name" => "tên đơn",
"menu_hidden" => "giấu",
"menu_show" => "trưng bày",
@ -228,7 +227,7 @@ return array(
"install_login" => "Bạn có thể sử dụng tài khoản đăng nhập sau",
"install_enter" => "hệ thống",
"install_user_default" => "Administrator: {0} / (dưới đây thiết lập một mật khẩu) <br/> người sử dụng trung bình: {1} <br/> người sử dụng của khách: {2}",
"login_root_password" => "administrator Password",
"login_root_password" => "Đặt mật khẩu Administrator",
"login_root_password_tips" => "Thiết lập một mật khẩu quản trị!",
"forget_password" => "Quên mật khẩu của bạn",
"forget_password_tips" => "Quên Administrator Password: <br/> Hãy đăng nhập máy chủ xóa <b>./data/system/install.lock</b> thiết lập lại; <br/><br/> Non-quản trị viên Quên mật khẩu: <br/> Hãy liên hệ với người quản trị để thiết lập lại!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "Được thay đổi",
"last_time" => "Lần đăng nhập mới",
"sort_type" => "Sắp xếp theo",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "thư mục công cộng",
"system_path_not_change" => "thư mục hệ thống, không thể được sửa đổi",
"file" => "hồ sơ",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "office预览,kodexplorer需要部署在外网<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">详情></a>",
"config_save_error_auth" => "配置保存失败,管理员禁止了此权限!",
"config_save_error_file" => "错误,文件没有写权限!",
"beautify_html" => "html代码美化",
"beautify_css" => "css代代码美化",
"beautify_js" => "js代码美化",
"beautify_code" => "代码格式化",
"shortcut" => "快捷键",
"use_free" => "继续使用免费版",
"learn_more" => "了解更多",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1 (团队版)",
"version_vip_2" => "VIP 2 (专业版)",
"version_vip_3" => "VIP 3 (企业版)",
"path_can_not_write_data" => "目录不可写,请将该目录及所有子目录设置为可读写后再试!",
"menu_name" => "菜单名",
"menu_hidden" => "隐藏",
"menu_show" => "显示",
@ -228,7 +227,7 @@ return array(
"install_login" => "您可以用如下账号登录",
"install_enter" => "进入系统",
"install_user_default" => "管理员:{0}/(在下面设置密码)<br/>普通用户:{1}<br/>游客用户:{2}",
"login_root_password" => "管理员密码",
"login_root_password" => "设置管理员密码",
"login_root_password_tips" => "请设置管理员密码!",
"forget_password" => "忘记密码",
"forget_password_tips" => "管理员忘记密码:<br/>请登陆服务器删除<b>./data/system/install.lock</b>后重置;<br/><br/>非管理员忘记密码:<br/>请联系管理员重置!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "修改时间",
"last_time" => "最后访问",
"sort_type" => "排序方式",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "公共目录",
"system_path_not_change" => "系统目录,不允许修改",
"file" => "文件",

View File

@ -169,9 +169,7 @@ return array(
"unknow_file_office" => "Office預覽,此程式需要部署在外部網路<br/><br/><a href=\"http://kalcaddle.com/office.html\" target=\"_blank\">详情></a>",
"config_save_error_auth" => "設定儲存失败,管理员禁止了此权限!",
"config_save_error_file" => "錯誤,文件沒有寫權限!",
"beautify_html" => "html代码美化",
"beautify_css" => "css代代码美化",
"beautify_js" => "js代码美化",
"beautify_code" => "代碼格式化",
"shortcut" => "快捷鍵",
"use_free" => "繼續使用免費版",
"learn_more" => "了解更多",
@ -205,6 +203,7 @@ return array(
"version_vip_1" => "VIP 1 (團隊版)",
"version_vip_2" => "VIP 2 (專業版)",
"version_vip_3" => "VIP 3 (企業版)",
"path_can_not_write_data" => "目錄不可寫,請將該目錄及所有子目錄設置為可讀寫後再試!",
"menu_name" => "菜單名",
"menu_hidden" => "隱藏",
"menu_show" => "顯示",
@ -228,7 +227,7 @@ return array(
"install_login" => "您可以用如下賬號登錄",
"install_enter" => "進入系統",
"install_user_default" => "管理員:{0}/(在下面設置密碼) <br/>普通用戶:{1} <br/>遊客用戶:{2}",
"login_root_password" => "管理員密碼",
"login_root_password" => "設置管理員密碼",
"login_root_password_tips" => "請設置管理員密碼!",
"forget_password" => "忘記密碼",
"forget_password_tips" => "管理員忘記密碼: <br/>請登陸服務器刪除<b>./data/system/install.lock</b>後重置; <br/><br/>非管理員忘記密碼: <br/>請聯繫管理員重置!",
@ -292,8 +291,8 @@ return array(
"modify_time" => "修改時間",
"last_time" => "最後訪問",
"sort_type" => "排序方式",
"time_type" => "Y/m/d h:i:s",
"time_type_info" => "Y/m/d h:i:s",
"time_type" => "Y/m/d H:i:s",
"time_type_info" => "Y/m/d H:i:s",
"public_path" => "公共目錄",
"system_path_not_change" => "系統目錄,不允許修改",
"file" => "",

View File

@ -1,2 +1,2 @@
<?php
define('KOD_VERSION','3.34');
define('KOD_VERSION','3.35');

View File

@ -49,17 +49,16 @@ class app extends Controller{
*/
public function user_app() {
$path = _DIR($this->in['path']);
if (isset($this->in['action']) && $this->in['action'] == 'add'){
if (isset($this->in['action']) &&
$this->in['action'] == 'add'){
$path .= '.oexe';
}
if (!checkExt($path)) {
show_json($this->L['error']);exit;
}
$data = json_decode($this->in['data'],true);
if(!is_array($data)){
show_json($this->L['error'],false);
}
$data = $this->_init();
unset($data['name']);unset($data['desc']);unset($data['group']);
$res = file_put_contents($path, json_encode($data));
show_json($this->L['success']);
@ -123,6 +122,11 @@ class app extends Controller{
}
private function _init(){
return json_decode(rawurldecode($this->in['data']));
$data = rawurldecode($this->in['data']);
$arr = json_decode($data,true);
if(!is_array($arr)){
show_json($this->L['error'],false);
}
return $arr;
}
}

View File

@ -55,6 +55,7 @@ class editor extends Controller{
if (filesize($filename) >= 1024*1024*40) show_json($this->L['edit_too_big'],false);
$filecontents=file_get_contents($filename);//文件内容
$charset=get_charset($filecontents);
if ($charset!='' &&
$charset!='utf-8' &&
function_exists("mb_convert_encoding")
@ -73,6 +74,7 @@ class editor extends Controller{
$data['content'] = base64_encode($filecontents);
$data['base64'] = true;
}
//unset($data['content']);
show_json($data);
}
public function fileSave(){

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
<?php class system_role extends Controller{public static $static_sql=null;private $sql;function __construct(){parent::__construct();<EFBFBD>Ö¨Á¢;$this->sql=self::load_data();<EFBFBD>ò²™ø™à†ç¸¼õŽþ;}public static function load_data(){if(is_null(self::$static_sql)){self::$static_sql=system_rol_data();}return self::$static_sql;}public static function get_info($îï<EFBFBD>¹¡){$Æ‘È=self::load_data();<EFBFBD>¨á®‰Ôà£Îú„Ôâ½ÙË˺<EFBFBD>éô£¬¼´õ£<EFBFBD>çÌ©Êú³ ÜÖî×Ûĺ™Õ•åæá èËŒøÒÁïöÞØÃ‰£¿¼Ãœ”³óï÷¯;return $Æ‘È->get($îï<C3AE>¹¡);}public function get(){show_json($this->sql->get());<EFBFBD>µ§<EFBFBD>Ÿó§«ìùìÝñ̶µÕÚõ“ž§Ò‡—ʶ¡™ûϤ¢î˜Éš†Äˆã·Ôì«õã¿•õ;}public function add(){$çüþ²´=$this->_init_data();$çüþ²´['role_id']=$this->sql->get_max_id().'';<EFBFBD>œÔÕí ¦ó宨<EFBFBD>„ó°éî;if($this->sql->set($çüþ²´['role_id'],$çüþ²´)){show_json($this->L['success'],!0,$çüþ²´['role_id']);}show_json($this->L['error'],!1);}public function edit(){$€ä×çâ=$this->_init_data();<EFBFBD>øçǬ„<EFBFBD>;$<24>=$this->in['role_id'];if($this->sql->set($<EFBFBD>,$€ä×çâ)){show_json($this->L['success'],!0,$<EFBFBD>);}show_json($this->L['error'],!1);}public function del(){if(!isset($this->in['role_id']))show_json($this->L["data_not_full"],!1);if(strlen($this->in['role_id'])<=0x001)show_json($this->L['default_user_can_not_do'],!1);system_member::role_remove_user_update($this->in['role_id']);if($this->sql->remove($this->in['role_id'])){show_json($this->L['success']);}show_json($this->L['error'],!1);}private function _init_data(){if(strlen($this->in['name'])<0x001)show_json($this->L["groupname_can_not_null"],!1);$€‰å=array('name'=>rawurldecode($this->in['name']));<EFBFBD>ͱ›¸¡Œ¸†ã¡è»¼€µ¥Èâªæå»òŠñó“ØÍºÃ;$€‰å['ext_not_allow']=$this->in['ext_not_allow'];foreach($this->config['role_setting'] as $ÞÔŽêŽ=>){foreach( as $ýŒ){$þÁ“Ç¥=$ÞÔŽêŽ.':'.$ýŒ;if(isset($this->in[$þÁ“Ç¥])){$€‰å[$þÁ“Ç¥]=0x001;}else{$€‰å[$þÁ“Ç¥]=0;}}}return $€‰å;}}
<?php class system_role extends Controller{public static $static_sql=null;private $sql;function __construct(){parent::__construct();$this->sql=self::load_data();<EFBFBD>Ù³Ñììñ§Àë¡ÑÆ¥§¶ÂßÚ¾üιÎÒÝ<EFBFBD>ëí;}public static function load_data(){if(is_null(self::$static_sql)){self::$static_sql=system_rol_data();}return self::$static_sql;}public static function get_info($£){$Ý׈=self::load_data();<EFBFBD>ò†å”׬¹þãüÞ¾¼ÜŽö«àÔ»ÌþïùœÇç<EFBFBD>ûÛ“âïë<EFBFBD>ªêò§Ê²ä§ÀÛÓ¡°<EFBFBD>íôÎÞîë;return $Ý׈->get();}public function get(){show_json($this->sql->get());<EFBFBD>í°ÈР´àË Óóê‡Ø“Ç´çéå÷ØÚƷɳ߻ˆ;}public function add(){=$this->_init_data();['role_id']=$this->sql->get_max_id().'';<EFBFBD>ܦ²±šž¸ó±<EFBFBD>¨™ê<EFBFBD>ÄéØû´<EFBFBD>ÜððœÏϘªáõЕ¨ë³áßäã‰þΙ”ƒê¸÷íªŽßÆÞ¯ß‰ÖÚ¦€ÇÚá;if($this->sql->set($ª['role_id'],)){show_json($this->L['success'],!0,$ª['role_id']);}show_json($this->L['error'],!1);}public function edit(){$¿Å=$this->_init_data();$•ËÐ=$this->in['role_id'];if($this->sql->set($•ËÐ,$¿Å)){show_json($this->L['success'],!0,$•ËÐ);}show_json($this->L['error'],!1);}public function del(){if(!isset($this->in['role_id']))show_json($this->L["data_not_full"],!1);if(strlen($this->in['role_id'])<=0x001)show_json($this->L['default_user_can_not_do'],!1);system_member::role_remove_user_update($this->in['role_id']);<EFBFBD>ˆ´©³Â‰ú¡¸Û«Ê²†ñ³ÎÌ•ö<EFBFBD>Û©Ìñ;if($this->sql->remove($this->in['role_id'])){show_json($this->L['success']);}show_json($this->L['error'],!1);}private function _init_data(){if(strlen($this->in['name'])<0x001)show_json($this->L["groupname_can_not_null"],!1);$<EFBFBD>œÄÙ×=array('name'=>rawurldecode($this->in['name']));<EFBFBD>;$<24>œÄÙ×['ext_not_allow']=$this->in['ext_not_allow'];<EFBFBD>óÄØŸ<EFBFBD>Œ¦¿ôÎÕìÛ²¨¤;foreach($this->config['role_setting'] as $Æ=>$Р™){foreach($Р™ as $¯›){$<24>§=.':'.$¯›;if(isset($this->in[$<EFBFBD>§])){$<24>œÄÙ×[$<24>§]=0x001;}else{$<24>œÄÙ×[$<24>§]=0;}}}return $<24>œÄÙ×;<EFBFBD>•û…¼ýı͞©ÍµÑñÁ™´“ºÎ³ééÕëôáþíöûò³ù¸åÇÓ…ñ¢ºÄ•üÝɘ˜Äƒƒšî•<EFBFBD>ЕýÈðüŒªâÓþçÆ¡£¶¡è<EFBFBD>²;}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,5 @@
<?php
ob_start();
include ('./config/config.php');
$app = new Application();
init_config();

View File

@ -174,18 +174,18 @@ class fileCache{
* 保存数据;
*/
public static function save($file,$data){//10000次需要6s
if (!$file) return;
if (!$file) return false;
if (!file_exists($file)){
@touch($file);
}
chmod_path($file,0777);
if (!path_writeable($file)) {
show_json('the path "data/" can not write!',false);
show_tips('"data/" can not write!');
}
$json_str = json_encode($data);
if(is_null($json_str)){//含有二进制或非utf8字符串对应检测
show_json('json_encode error!',false);
show_tips('json_encode error!');
}
if($fp = fopen($file, "w")){
@ -197,5 +197,6 @@ class fileCache{
}
fclose($fp);
}
return true;
}
}

View File

@ -72,7 +72,7 @@ abstract class Controller {
*/
protected function display($tpl_file){
global $L,$LNG;
$out = ob_get_clean();
ob_end_clean();
extract($this->values);
require($this->tpl.$tpl_file);
}

View File

@ -317,13 +317,15 @@ function show_tips($message,$url= '', $time = 3){
$goto = "";
$info = "";
} //是否自动跳转
$message = nl2br(htmlentities($message));
echo<<<END
<html>
<meta http-equiv='refresh' $goto charset="utf-8">
<style>
#msgbox{border: 1px solid #ddd;border: 1px solid #eee;padding: 20px 40px 40px 40px;border-radius: 5px;background: #f6f6f6;
font-family: 'Helvetica Neue', "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif;
color:888;margin:0 auto;margin-top:10%;width:400px;font-size:14px;color:#666;}
color:888;margin:0 auto;margin-top:10%;width:400px;font-size:14px;color:#666;word-wrap: break-word;word-break: break-all;}
#msgbox #info{margin-top: 10px;color:#aaa;font-size: 12px;}
#msgbox #title{color: #888;border-bottom: 1px solid #ddd;padding: 10px 0;margin: 0 0 15px;font-size:18px;}
#msgbox #info a{color: #64b8fb;text-decoration: none;padding: 2px 0px;border-bottom: 1px solid;}
@ -381,7 +383,7 @@ function show_json($data,$code = true,$info=''){
if ($info != '') {
$result['info'] = $info;
}
ob_clean();
ob_end_clean();
header("X-Powered-By: kodExplorer.");
header('Content-Type: application/json; charset=utf-8');
echo json_encode($result);

View File

@ -766,7 +766,7 @@ function file_put_out($file,$download=false){
if (!is_readable($file)) show_json('file not readable',false);
$filename = get_path_this($file);
set_time_limit(0);
$out = ob_get_clean();//清除之前所有输出缓冲 TODO
ob_end_clean();
$mime = get_file_mime(get_path_ext($file));
$time = gmdate('D, d M Y H:i:s', filemtime($file));
if ($download ||
@ -847,7 +847,7 @@ function file_download_this($from, $file_name,$header_size=0){
if(!$download_fp = @fopen($file_name, "wb")){
return false;
}
while(!feof($fp)){
while(!feof($fp) && (connection_status() == 0)){//没有关闭页面
if(!file_exists($file_name)){//删除目标文件;则终止下载
fclose($download_fp);
return false;

View File

@ -11,11 +11,10 @@ if(UPDATE_DEV){
}
function update_check($self_file){
del_file($self_file);
//version <3.3 to 3.3
if( file_exists(THE_DATA_PATH.'system/member.php') &&
!file_exists(THE_DATA_PATH.'system/system_member.php')){
new updateToV330();
new updateToV330($self_file);
header('location:./index.php?user/logout');
exit;
}
@ -24,14 +23,17 @@ function update_check($self_file){
class updateToV330{
private $user_array;
private $role_array;
function __construct() {
function __construct($self_file) {
$this->user_array = array();
$this->role_array = array();
$this->init_role();
$this->init_group();
$this->init_user();
$result = $this->init_user();
$this->init_system();
$this->clear_path();
if($result){
$this->clear_path();
del_file($self_file);
}
}
private function init_role(){
$file_in = THE_DATA_PATH.'system/group.php';
@ -179,7 +181,7 @@ class updateToV330{
$this->reset_user_config($value);
$data_new[$id] = $value;
}
$sql->save($file_out,$data_new);
return $sql->save($file_out,$data_new);
}
private function init_system(){
$file_in = THE_DATA_PATH.'system/system_setting.php';
@ -195,10 +197,15 @@ class updateToV330{
private function clear_path(){
del_file(THE_DATA_PATH.'system/group.php');
del_file(THE_DATA_PATH.'system/member.php');
del_file(BASIC_PATH.'readme.txt');
del_file(BASIC_PATH.'README.md');
del_dir(THE_DATA_PATH.'2.0-'.KOD_VERSION.'.zip');
del_dir(THE_DATA_PATH.'i18n');
del_dir(THE_DATA_PATH.'thumb');
del_dir(BASIC_PATH.'__MACOSX');
del_dir(THE_DATA_PATH.'session');
mk_dir(THE_DATA_PATH.'session');
mk_dir(THE_DATA_PATH.'temp/thumb');
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,328 @@
ace.define("ace/ext/beautify/php_rules",["require","exports","module","ace/token_iterator"],function(e,t,n){"use strict";var r=e("ace/token_iterator").TokenIterator;t.newLines=[{type:"support.php_tag",value:"<?php"},{type:"support.php_tag",value:"<?"},{type:"support.php_tag",value:"?>"},{type:"paren.lparen",value:"{",indent:!0},{type:"paren.rparen",breakBefore:!0,value:"}",indent:!1},{type:"paren.rparen",breakBefore:!0,value:"})",indent:!1,dontBreak:!0},{type:"comment"},{type:"text",value:";"},{type:"text",value:":",context:"php"},{type:"keyword",value:"case",indent:!0,dontBreak:!0},{type:"keyword",value:"default",indent:!0,dontBreak:!0},{type:"keyword",value:"break",indent:!1,dontBreak:!0},{type:"punctuation.doctype.end",value:">"},{type:"meta.tag.punctuation.end",value:">"},{type:"meta.tag.punctuation.begin",value:"<",blockTag:!0,indent:!0,dontBreak:!0},{type:"meta.tag.punctuation.begin",value:"</",indent:!1,breakBefore:!0,dontBreak:!0},{type:"punctuation.operator",value:";"}],t.spaces=[{type:"xml-pe",prepend:!0},{type:"entity.other.attribute-name",prepend:!0},{type:"storage.type",value:"var",append:!0},{type:"storage.type",value:"function",append:!0},{type:"keyword.operator",value:"="},{type:"keyword",value:"as",prepend:!0,append:!0},{type:"keyword",value:"function",append:!0},{type:"support.function",next:/[^\(]/,append:!0},{type:"keyword",value:"or",append:!0,prepend:!0},{type:"keyword",value:"and",append:!0,prepend:!0},{type:"keyword",value:"case",append:!0},{type:"keyword.operator",value:"||",append:!0,prepend:!0},{type:"keyword.operator",value:"&&",append:!0,prepend:!0}],t.singleTags=["!doctype","area","base","br","hr","input","img","link","meta"],t.transform=function(e,n,r){var i=e.getCurrentToken(),s=t.newLines,o=t.spaces,u=t.singleTags,a="",f=0,l=!1,c,h,p={},d,v={},m=!1,g="";while(i!==null){console.log(i);if(!i){i=e.stepForward();continue}i.type=="support.php_tag"&&i.value!="?>"?r="php":i.type=="support.php_tag"&&i.value=="?>"?r="html":i.type=="meta.tag.name.style"&&r!="css"?r="css":i.type=="meta.tag.name.style"&&r=="css"?r="html":i.type=="meta.tag.name.script"&&r!="js"?r="js":i.type=="meta.tag.name.script"&&r=="js"&&(r="html"),v=e.stepForward(),v&&v.type.indexOf("meta.tag.name")==0&&(d=v.value),p.type=="support.php_tag"&&p.value=="<?="&&(l=!0),i.type=="meta.tag.name"&&(i.value=i.value.toLowerCase()),i.type=="text"&&(i.value=i.value.trim());if(!i.value){i=v;continue}g=i.value;for(var y in o)i.type==o[y].type&&(!o[y].value||i.value==o[y].value)&&v&&(!o[y].next||o[y].next.test(v.value))&&(o[y].prepend&&(g=" "+i.value),o[y].append&&(g+=" "));i.type.indexOf("meta.tag.name")==0&&(c=i.value),m=!1;for(y in s)if(i.type==s[y].type&&(!s[y].value||i.value==s[y].value)&&(!s[y].blockTag||u.indexOf(d)===-1)&&(!s[y].context||s[y].context===r)){s[y].indent===!1&&f--;if(s[y].breakBefore&&(!s[y].prev||s[y].prev.test(p.value))){a+="\n",m=!0;for(y=0;y<f;y++)a+=" "}break}if(l===!1)for(y in s)if(p.type==s[y].type&&(!s[y].value||p.value==s[y].value)&&(!s[y].blockTag||u.indexOf(c)===-1)&&(!s[y].context||s[y].context===r)){s[y].indent===!0&&f++;if(!s[y].dontBreak&&!m){a+="\n";for(y=0;y<f;y++)a+=" "}break}a+=g,p.type=="support.php_tag"&&p.value=="?>"&&(l=!1),h=c,p=i,i=v;if(i===null)break}return a}}),ace.define("ace/ext/beautify",["require","exports","module","ace/token_iterator","ace/ext/beautify/php_rules"],function(e,t,n){"use strict";var r=e("ace/token_iterator").TokenIterator,i=e("./beautify/php_rules").transform;t.beautify=function(e){var t=new r(e,0,0),n=t.getCurrentToken(),s=e.$modeId.split("/").pop(),o=i(t,s);e.doc.setValue(o)},t.commands=[{name:"beautify",exec:function(e){t.beautify(e.session)},bindKey:"Ctrl-Shift-B"}]});
(function() {
ace.require(["ace/ext/beautify"], function() {});
})();
ace.define("ace/ext/beautify/php_rules",["require","exports","module","ace/token_iterator"], function(require, exports, module) {
"use strict";
var TokenIterator = require("ace/token_iterator").TokenIterator;
exports.newLines = [{
type: 'support.php_tag',
value: '<?php'
}, {
type: 'support.php_tag',
value: '<?'
}, {
type: 'support.php_tag',
value: '?>'
}, {
type: 'paren.lparen',
value: '{',
indent: true
}, {
type: 'paren.rparen',
breakBefore: true,
value: '}',
indent: false
}, {
type: 'paren.rparen',
breakBefore: true,
value: '})',
indent: false,
dontBreak: true
}, {
type: 'comment'
}, {
type: 'text',
value: ';'
}, {
type: 'text',
value: ':',
context: 'php'
}, {
type: 'keyword',
value: 'case',
indent: true,
dontBreak: true
}, {
type: 'keyword',
value: 'default',
indent: true,
dontBreak: true
}, {
type: 'keyword',
value: 'break',
indent: false,
dontBreak: true
}, {
type: 'punctuation.doctype.end',
value: '>'
}, {
type: 'meta.tag.punctuation.end',
value: '>'
}, {
type: 'meta.tag.punctuation.begin',
value: '<',
blockTag: true,
indent: true,
dontBreak: true
}, {
type: 'meta.tag.punctuation.begin',
value: '</',
indent: false,
breakBefore: true,
dontBreak: true
}, {
type: 'punctuation.operator',
value: ';'
}];
exports.spaces = [{
type: 'xml-pe',
prepend: true
},{
type: 'entity.other.attribute-name',
prepend: true
}, {
type: 'storage.type',
value: 'var',
append: true
}, {
type: 'storage.type',
value: 'function',
append: true
}, {
type: 'keyword.operator',
value: '='
}, {
type: 'keyword',
value: 'as',
prepend: true,
append: true
}, {
type: 'keyword',
value: 'function',
append: true
}, {
type: 'support.function',
next: /[^\(]/,
append: true
}, {
type: 'keyword',
value: 'or',
append: true,
prepend: true
}, {
type: 'keyword',
value: 'and',
append: true,
prepend: true
}, {
type: 'keyword',
value: 'case',
append: true
}, {
type: 'keyword.operator',
value: '||',
append: true,
prepend: true
}, {
type: 'keyword.operator',
value: '&&',
append: true,
prepend: true
}];
exports.singleTags = ['!doctype','area','base','br','hr','input','img','link','meta'];
exports.transform = function(iterator, maxPos, context) {
var token = iterator.getCurrentToken();
var newLines = exports.newLines;
var spaces = exports.spaces;
var singleTags = exports.singleTags;
var code = '';
var indentation = 0;
var dontBreak = false;
var tag;
var lastTag;
var lastToken = {};
var nextTag;
var nextToken = {};
var breakAdded = false;
var value = '';
while (token!==null) {
//console.log(token);
if( !token ){
token = iterator.stepForward();
continue;
}
if( token.type == 'support.php_tag' && token.value != '?>' ){
context = 'php';
}else if( token.type == 'support.php_tag' && token.value == '?>' ){
context = 'html';
}else if( token.type == 'meta.tag.name.style' && context != 'css' ){
context = 'css';
}else if( token.type == 'meta.tag.name.style' && context == 'css' ){
context = 'html';
}else if( token.type == 'meta.tag.name.script' && context != 'js' ){
context = 'js';
}else if( token.type == 'meta.tag.name.script' && context == 'js' ){
context = 'html';
}
nextToken = iterator.stepForward();
if (nextToken && nextToken.type.indexOf('meta.tag.name') == 0) {
nextTag = nextToken.value;
}
if ( lastToken.type == 'support.php_tag' && lastToken.value == '<?=') {
dontBreak = true;
}
if (token.type == 'meta.tag.name') {
token.value = token.value.toLowerCase();
}
if (token.type == 'text') {
token.value = token.value.trim();
}
//add by warlee
if (token.type == 'keyword' || token.type == "identifier") {
token.value = token.value.trim()+" ";
}
if (!token.value) {
token = nextToken;
continue;
}
value = token.value;
for (var i in spaces) {
if (
token.type == spaces[i].type &&
(!spaces[i].value || token.value == spaces[i].value) &&
(
nextToken &&
(!spaces[i].next || spaces[i].next.test(nextToken.value))
)
) {
if (spaces[i].prepend) {
value = ' ' + token.value;
}
if (spaces[i].append) {
value += ' ';
}
}
}
if (token.type.indexOf('meta.tag.name') == 0) {
tag = token.value;
}
breakAdded = false;
for (i in newLines) {
if (
token.type == newLines[i].type &&
(
!newLines[i].value ||
token.value == newLines[i].value
) &&
(
!newLines[i].blockTag ||
singleTags.indexOf(nextTag) === -1
) &&
(
!newLines[i].context ||
newLines[i].context === context
)
) {
if (newLines[i].indent === false) {
indentation--;
}
if (
newLines[i].breakBefore &&
( !newLines[i].prev || newLines[i].prev.test(lastToken.value) )
) {
code += "\n";
breakAdded = true;
for (i = 0; i < indentation; i++) {
code += "\t";
}
}
break;
}
}
if (dontBreak===false) {
for (i in newLines) {
if (
lastToken.type == newLines[i].type &&
(
!newLines[i].value || lastToken.value == newLines[i].value
) &&
(
!newLines[i].blockTag ||
singleTags.indexOf(tag) === -1
) &&
(
!newLines[i].context ||
newLines[i].context === context
)
) {
if (newLines[i].indent === true) {
indentation++;
}
if (!newLines[i].dontBreak && !breakAdded) {
code += "\n";
for (i = 0; i < indentation; i++) {
code += "\t";
}
}
break;
}
}
}
code += value;
if ( lastToken.type == 'support.php_tag' && lastToken.value == '?>' ) {
dontBreak = false;
}
lastTag = tag;
lastToken = token;
token = nextToken;
if (token===null) {
break;
}
}
return code;
};
});
ace.define("ace/ext/beautify",["require","exports","module","ace/token_iterator","ace/ext/beautify/php_rules"],
function(require, exports, module) {
"use strict";
var TokenIterator = require("ace/token_iterator").TokenIterator;
var phpTransform = require("./beautify/php_rules").transform;
exports.beautify = function(session) {
var iterator = new TokenIterator(session, 0, 0);
var token = iterator.getCurrentToken();
var context = session.$modeId.split("/").pop();
var code = phpTransform(iterator, context);
session.doc.setValue(code);
};
exports.commands = [{
name: "beautify",
exec: function(editor) {
exports.beautify(editor.session);
},
bindKey: "Ctrl-Shift-B"
}]
});
(function() {
ace.require(["ace/ext/beautify"], function() {});
})();

File diff suppressed because one or more lines are too long

View File

@ -164,6 +164,10 @@ artDialog.fn = artDialog.prototype = {
.content(config.content, true)
.size(config.width, config.height)
.time(config.time);
if( config.width == "100%" && //100%则全屏
config.height == "100%"){
DOM.wrap.addClass('dialogMax dialogMaxFirst');
}
config.follow
? that.follow(config.follow)
@ -989,16 +993,15 @@ artDialog.fn = artDialog.prototype = {
}
if ($wrap.hasClass('dialogMax')) {//还原
var dataSize = $wrap.data('initSize');
$wrap.removeClass('dialogMax');
$wrap.css({
'left':$wrap.data('initSize').left + 'px',
'top':$wrap.data('initSize').top + 'px',
'width':$wrap.data('initSize').width,
'height':$wrap.data('initSize').height
});
$main.css({
'height':$wrap.data('initSize').height
});
if(!dataSize){
var winWidth = _$window.width();
var winHeight = _$window.height();
dataSize = {left:winWidth*0.1,top:winHeight*0.1,width:winWidth*0.8,height:winHeight*0.7};
}
that.size(dataSize.width,dataSize.height);
$wrap.css(dataSize);
}else{//最大化
var dialogDom = $wrap.context;
var size = {

View File

@ -49,18 +49,10 @@ var jPlayerConfigInit = function($player,config){
},
loadedmetadata:function(){//载入后重置窗口大小
try{
var name = $player.parents('.dialog-simple').find('.aui_titleBar').attr('id');
var dialog = $.artDialog.list[name];
if(name != 'movie_player_dialog' || $(this).height() < 10){
return;
}
var $vedio = $player.find('video');
if($vedio.length !=0){
dialog.size($vedio.width(),$vedio.height());
setTimeout(function(){
dialog.size($vedio.width(),$vedio.height());
},100);
}
$player.data('player_resize','0');
setTimeout(function(){
jPlayerResizeVedio($player);
},200);
}catch(e){};
},
error: function(current) {
@ -93,6 +85,10 @@ var jPlayerConfigInit = function($player,config){
},
playing:function(){
$($player).find('.video-play-loading').hide();
if($player.data('player_resize') != '1'){
$player.data('player_resize','1');
jPlayerResizeVedio($($player));
}
},
play: function() {
$($player).find('.video-play').stop(true, true).fadeOut(150);
@ -111,6 +107,30 @@ var jPlayerConfigInit = function($player,config){
return playerConfig;
}
var jPlayerResizeVedio = function($player){
var name = $player.parents('.dialog-simple').find('.aui_titleBar').attr('id');
var dialog = $.artDialog.list[name];
var $vedio = $player.find('video');
if(name != 'movie_player_dialog' || $vedio.length == 0){
return;
}
var vWidth = $vedio.width(),
vHeight = $vedio.height(),
winWidth = $(window).width(),
winHeight = $(window).height(),
r = vWidth/vHeight;
if(vHeight >= winHeight*0.8){
vHeight = winHeight*0.8;
vWidth = vHeight*r;
}
if(vWidth >= winWidth*0.8){
vWidth = winWidth*0.8;
vHeight = vWidth/r;
}
dialog.size(vWidth,vHeight);
}
var jPlayerBindControl = function($player){
var $jPlayer = $player.find(".jPlayer-container");
$player.find('.playerScreen').unbind('dblclick').dblclick(function(event) {

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,551 +0,0 @@
/*! Blue Monday Skin for jPlayer 2.9.2 ~ (c) 2009-2014 Happyworm Ltd ~ MIT License */
/*
* Skin for jPlayer Plugin (jQuery JavaScript Library)
* http://www.jplayer.org
*
* Skin Name: Blue Monday
*
* Copyright (c) 2010 - 2014 Happyworm Ltd
* Licensed under the MIT license.
* - http://www.opensource.org/licenses/mit-license.php
*
* Author: Silvia Benvenuti
* Skin Version: 5.1 (jPlayer 2.8.0)
* Date: 13th November 2014
*/
.jp-audio *:focus,
.jp-audio-stream *:focus,
.jp-video *:focus {
/* Disable the browser focus highlighting. */
outline: none; }
.jp-audio button::-moz-focus-inner,
.jp-audio-stream button::-moz-focus-inner,
.jp-video button::-moz-focus-inner {
/* Disable the browser CSS3 focus highlighting. */
border: 0; }
.jp-audio,
.jp-audio-stream,
.jp-video {
font-size: 16px;
font-family: Verdana, Arial, sans-serif;
line-height: 1.6;
color: #666;
border: 1px solid #009be3;
background-color: #eee; }
.jp-audio {
width: 420px; }
.jp-audio-stream {
width: 182px; }
.jp-video-270p {
width: 480px; }
.jp-video-360p {
width: 640px; }
.jp-video-full {
/* Rules for IE6 (full-screen) */
width: 480px;
height: 270px;
/* Rules for IE7 (full-screen) - Otherwise the relative container causes other page items that are not position:static (default) to appear over the video/gui. */
position: static !important;
position: relative; }
/* The z-index rule is defined in this manner to enable Popcorn plugins that add overlays to video area. EG. Subtitles. */
.jp-video-full div div {
z-index: 1000; }
.jp-video-full .jp-jplayer {
top: 0;
left: 0;
position: fixed !important;
position: relative;
/* Rules for IE6 (full-screen) */
overflow: hidden; }
.jp-video-full .jp-gui {
position: fixed !important;
position: static;
/* Rules for IE6 (full-screen) */
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1001;
/* 1 layer above the others. */ }
.jp-video-full .jp-interface {
position: absolute !important;
position: relative;
/* Rules for IE6 (full-screen) */
bottom: 0;
left: 0; }
.jp-interface {
position: relative;
background-color: #eee;
width: 100%; }
.jp-audio .jp-interface {
height: 80px; }
.jp-audio-stream .jp-interface {
height: 80px; }
.jp-video .jp-interface {
border-top: 1px solid #009be3; }
/* @group CONTROLS */
.jp-controls-holder {
clear: both;
width: 440px;
margin: 0 auto;
position: relative;
overflow: hidden;
top: -8px;
/* This negative value depends on the size of the text in jp-currentTime and jp-duration */ }
.jp-interface .jp-controls {
margin: 0;
padding: 0;
overflow: hidden; }
.jp-audio .jp-controls {
width: 380px;
padding: 20px 20px 0 20px; }
.jp-audio-stream .jp-controls {
position: absolute;
top: 20px;
left: 20px;
width: 142px; }
.jp-video .jp-type-single .jp-controls {
width: 78px;
margin-left: 200px; }
.jp-video .jp-type-playlist .jp-controls {
width: 134px;
margin-left: 172px; }
.jp-video .jp-controls {
float: left; }
.jp-controls button {
display: block;
float: left;
overflow: hidden;
text-indent: -9999px;
border: none;
cursor: pointer; }
.jp-play {
width: 40px;
height: 40px; }
.jp-play {
background: url("../image/jplayer.blue.monday.jpg") 0 0 no-repeat; }
.jp-play:focus {
background: url("../image/jplayer.blue.monday.jpg") -41px 0 no-repeat; }
.jp-state-playing .jp-play {
background: url("../image/jplayer.blue.monday.jpg") 0 -42px no-repeat; }
.jp-state-playing .jp-play:focus {
background: url("../image/jplayer.blue.monday.jpg") -41px -42px no-repeat; }
.jp-stop, .jp-previous, .jp-next {
width: 28px;
height: 28px;
margin-top: 6px; }
.jp-stop {
background: url("../image/jplayer.blue.monday.jpg") 0 -83px no-repeat;
margin-left: 10px; }
.jp-stop:focus {
background: url("../image/jplayer.blue.monday.jpg") -29px -83px no-repeat; }
.jp-previous {
background: url("../image/jplayer.blue.monday.jpg") 0 -112px no-repeat; }
.jp-previous:focus {
background: url("../image/jplayer.blue.monday.jpg") -29px -112px no-repeat; }
.jp-next {
background: url("../image/jplayer.blue.monday.jpg") 0 -141px no-repeat; }
.jp-next:focus {
background: url("../image/jplayer.blue.monday.jpg") -29px -141px no-repeat; }
/* @end */
/* @group progress bar */
.jp-progress {
overflow: hidden;
background-color: #ddd; }
.jp-audio .jp-progress {
position: absolute;
top: 32px;
height: 15px; }
.jp-audio .jp-type-single .jp-progress {
left: 110px;
width: 186px; }
.jp-audio .jp-type-playlist .jp-progress {
left: 166px;
width: 130px; }
.jp-video .jp-progress {
top: 0px;
left: 0px;
width: 100%;
height: 10px; }
.jp-seek-bar {
background: url("../image/jplayer.blue.monday.jpg") 0 -202px repeat-x;
width: 0px;
height: 100%;
cursor: pointer; }
.jp-play-bar {
background: url("../image/jplayer.blue.monday.jpg") 0 -218px repeat-x;
width: 0px;
height: 100%; }
/* The seeking class is added/removed inside jPlayer */
.jp-seeking-bg {
background: url("../image/jplayer.blue.monday.seeking.gif"); }
/* @end */
/* @group volume controls */
.jp-state-no-volume .jp-volume-controls {
display: none; }
.jp-volume-controls {
position: absolute;
top: 32px;
left: 308px;
width: 200px; }
.jp-audio-stream .jp-volume-controls {
left: 70px; }
.jp-video .jp-volume-controls {
top: 12px;
left: 50px; }
.jp-volume-controls button {
display: block;
position: absolute;
overflow: hidden;
text-indent: -9999px;
border: none;
cursor: pointer; }
.jp-mute,
.jp-volume-max {
width: 18px;
height: 15px; }
.jp-volume-max {
left: 74px; }
.jp-mute {
background: url("../image/jplayer.blue.monday.jpg") 0 -170px no-repeat; }
.jp-mute:focus {
background: url("../image/jplayer.blue.monday.jpg") -19px -170px no-repeat; }
.jp-state-muted .jp-mute {
background: url("../image/jplayer.blue.monday.jpg") -60px -170px no-repeat; }
.jp-state-muted .jp-mute:focus {
background: url("../image/jplayer.blue.monday.jpg") -79px -170px no-repeat; }
.jp-volume-max {
background: url("../image/jplayer.blue.monday.jpg") 0 -186px no-repeat; }
.jp-volume-max:focus {
background: url("../image/jplayer.blue.monday.jpg") -19px -186px no-repeat; }
.jp-volume-bar {
position: absolute;
overflow: hidden;
background: url("../image/jplayer.blue.monday.jpg") 0 -250px repeat-x;
top: 5px;
left: 22px;
width: 46px;
height: 5px;
cursor: pointer; }
.jp-volume-bar-value {
background: url("../image/jplayer.blue.monday.jpg") 0 -256px repeat-x;
width: 0px;
height: 5px; }
/* @end */
/* @group current time and duration */
.jp-audio .jp-time-holder {
position: absolute;
top: 50px; }
.jp-audio .jp-type-single .jp-time-holder {
left: 110px;
width: 186px; }
.jp-audio .jp-type-playlist .jp-time-holder {
left: 166px;
width: 130px; }
.jp-current-time,
.jp-duration {
width: 60px;
font-size: .64em;
font-style: oblique; }
.jp-current-time {
float: left;
display: inline;
cursor: default; }
.jp-duration {
float: right;
display: inline;
text-align: right;
cursor: pointer; }
.jp-video .jp-current-time {
margin-left: 20px; }
.jp-video .jp-duration {
margin-right: 20px; }
/* @end */
/* @group playlist */
.jp-details {
font-weight: bold;
text-align: center;
cursor: default; }
.jp-details,
.jp-playlist {
width: 100%;
background-color: #ccc;
border-top: 1px solid #009be3; }
.jp-type-single .jp-details,
.jp-type-playlist .jp-details {
border-top: none; }
.jp-details .jp-title {
margin: 0;
padding: 5px 20px;
font-size: .72em;
font-weight: bold; }
.jp-playlist ul {
list-style-type: none;
margin: 0;
padding: 0 20px;
font-size: .72em; }
.jp-playlist li {
padding: 5px 0 4px 20px;
border-bottom: 1px solid #eee; }
.jp-playlist li div {
display: inline; }
/* Note that the first-child (IE6) and last-child (IE6/7/8) selectors do not work on IE */
div.jp-type-playlist div.jp-playlist li:last-child {
padding: 5px 0 5px 20px;
border-bottom: none; }
div.jp-type-playlist div.jp-playlist li.jp-playlist-current {
list-style-type: square;
list-style-position: inside;
padding-left: 7px; }
div.jp-type-playlist div.jp-playlist a {
color: #333;
text-decoration: none; }
div.jp-type-playlist div.jp-playlist a:hover {
color: #0d88c1; }
div.jp-type-playlist div.jp-playlist a.jp-playlist-current {
color: #0d88c1; }
div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove {
float: right;
display: inline;
text-align: right;
margin-right: 10px;
font-weight: bold;
color: #666; }
div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove:hover {
color: #0d88c1; }
div.jp-type-playlist div.jp-playlist span.jp-free-media {
float: right;
display: inline;
text-align: right;
margin-right: 10px; }
div.jp-type-playlist div.jp-playlist span.jp-free-media a {
color: #666; }
div.jp-type-playlist div.jp-playlist span.jp-free-media a:hover {
color: #0d88c1; }
span.jp-artist {
font-size: .8em;
color: #666; }
/* @end */
.jp-video-play {
width: 100%;
overflow: hidden;
/* Important for nested negative margins to work in modern browsers */
cursor: pointer;
background-color: transparent;
/* Makes IE9 work with the active area over the whole video area. IE6/7/8 only have the button as active area. */ }
.jp-video-270p .jp-video-play {
margin-top: -270px;
height: 270px; }
.jp-video-360p .jp-video-play {
margin-top: -360px;
height: 360px; }
.jp-video-full .jp-video-play {
height: 100%; }
.jp-video-play-icon {
position: relative;
display: block;
width: 112px;
height: 100px;
margin-left: -56px;
margin-top: -50px;
left: 50%;
top: 50%;
background: url("../image/jplayer.blue.monday.video.play.png") 0 0 no-repeat;
text-indent: -9999px;
border: none;
cursor: pointer; }
.jp-video-play-icon:focus {
background: url("../image/jplayer.blue.monday.video.play.png") 0 -100px no-repeat; }
.jp-jplayer audio,
.jp-jplayer {
width: 0px;
height: 0px; }
.jp-jplayer {
background-color: #000000; }
/* @group TOGGLES */
/* The audio toggles are nested inside jp-time-holder */
.jp-toggles {
padding: 0;
margin: 0 auto;
overflow: hidden; }
.jp-audio .jp-type-single .jp-toggles {
width: 25px; }
.jp-audio .jp-type-playlist .jp-toggles {
width: 55px;
margin: 0;
position: absolute;
left: 325px;
top: 50px; }
.jp-video .jp-toggles {
position: absolute;
right: 16px;
margin: 0;
margin-top: 10px;
width: 100px; }
.jp-toggles button {
display: block;
float: left;
width: 25px;
height: 18px;
text-indent: -9999px;
line-height: 100%;
/* need this for IE6 */
border: none;
cursor: pointer; }
.jp-full-screen {
background: url("../image/jplayer.blue.monday.jpg") 0 -310px no-repeat;
margin-left: 20px; }
.jp-full-screen:focus {
background: url("../image/jplayer.blue.monday.jpg") -30px -310px no-repeat; }
.jp-state-full-screen .jp-full-screen {
background: url("../image/jplayer.blue.monday.jpg") -60px -310px no-repeat; }
.jp-state-full-screen .jp-full-screen:focus {
background: url("../image/jplayer.blue.monday.jpg") -90px -310px no-repeat; }
.jp-repeat {
background: url("../image/jplayer.blue.monday.jpg") 0 -290px no-repeat; }
.jp-repeat:focus {
background: url("../image/jplayer.blue.monday.jpg") -30px -290px no-repeat; }
.jp-state-looped .jp-repeat {
background: url("../image/jplayer.blue.monday.jpg") -60px -290px no-repeat; }
.jp-state-looped .jp-repeat:focus {
background: url("../image/jplayer.blue.monday.jpg") -90px -290px no-repeat; }
.jp-shuffle {
background: url("../image/jplayer.blue.monday.jpg") 0 -270px no-repeat;
margin-left: 5px; }
.jp-shuffle:focus {
background: url("../image/jplayer.blue.monday.jpg") -30px -270px no-repeat; }
.jp-state-shuffled .jp-shuffle {
background: url("../image/jplayer.blue.monday.jpg") -60px -270px no-repeat; }
.jp-state-shuffled .jp-shuffle:focus {
background: url("../image/jplayer.blue.monday.jpg") -90px -270px no-repeat; }
/* @end */
/* @group NO SOLUTION error feedback */
.jp-no-solution {
padding: 5px;
font-size: .8em;
background-color: #eee;
border: 2px solid #009be3;
color: #000;
display: none; }
.jp-no-solution a {
color: #000; }
.jp-no-solution span {
font-size: 1em;
display: block;
text-align: center;
font-weight: bold; }
/* @end */

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,42 +0,0 @@
<div id="{{JPLAYER}}" class="jp-jplayer"></div>
<div id="{{WRAPPER}}" class="jp-audio" role="application" aria-label="media player">
<div class="jp-type-playlist">
<div class="jp-gui jp-interface">
<div class="jp-controls">
<button class="jp-previous" role="button" tabindex="0">previous</button>
<button class="jp-play" role="button" tabindex="0">play</button>
<button class="jp-next" role="button" tabindex="0">next</button>
<button class="jp-stop" role="button" tabindex="0">stop</button>
</div>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-controls">
<button class="jp-mute" role="button" tabindex="0">mute</button>
<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
</div>
<div class="jp-time-holder">
<div class="jp-current-time" role="timer" aria-label="time">&nbsp;</div>
<div class="jp-duration" role="timer" aria-label="duration">&nbsp;</div>
</div>
<div class="jp-toggles">
<button class="jp-repeat" role="button" tabindex="0">repeat</button>
<button class="jp-shuffle" role="button" tabindex="0">shuffle</button>
</div>
</div>
<div class="jp-playlist">
<ul>
<li>&nbsp;</li>
</ul>
</div>
<div class="jp-no-solution">
<span>Update Required</span>
To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
</div>
</div>
</div>

View File

@ -1,37 +0,0 @@
<div id="{{JPLAYER}}" class="jp-jplayer"></div>
<div id="{{WRAPPER}}" class="jp-audio" role="application" aria-label="media player">
<div class="jp-type-single">
<div class="jp-gui jp-interface">
<div class="jp-controls">
<button class="jp-play" role="button" tabindex="0">play</button>
<button class="jp-stop" role="button" tabindex="0">stop</button>
</div>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-controls">
<button class="jp-mute" role="button" tabindex="0">mute</button>
<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
</div>
<div class="jp-time-holder">
<div class="jp-current-time" role="timer" aria-label="time">&nbsp;</div>
<div class="jp-duration" role="timer" aria-label="duration">&nbsp;</div>
<div class="jp-toggles">
<button class="jp-repeat" role="button" tabindex="0">repeat</button>
</div>
</div>
</div>
<div class="jp-details">
<div class="jp-title" aria-label="title">&nbsp;</div>
</div>
<div class="jp-no-solution">
<span>Update Required</span>
To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
</div>
</div>
</div>

View File

@ -1,24 +0,0 @@
<div id="{{JPLAYER}}" class="jp-jplayer"></div>
<div id="{{WRAPPER}}" class="jp-audio-stream" role="application" aria-label="media player">
<div class="jp-type-single">
<div class="jp-gui jp-interface">
<div class="jp-controls">
<button class="jp-play" role="button" tabindex="0">play</button>
</div>
<div class="jp-volume-controls">
<button class="jp-mute" role="button" tabindex="0">mute</button>
<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
</div>
</div>
<div class="jp-details">
<div class="jp-title" aria-label="title">&nbsp;</div>
</div>
<div class="jp-no-solution">
<span>Update Required</span>
To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
</div>
</div>
</div>

View File

@ -1,52 +0,0 @@
<div id="{{WRAPPER}}" class="jp-video " role="application" aria-label="media player">
<div class="jp-type-playlist">
<div id="{{JPLAYER}}" class="jp-jplayer"></div>
<div class="jp-gui">
<div class="jp-video-play">
<button class="jp-video-play-icon" role="button" tabindex="0">play</button>
</div>
<div class="jp-interface">
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-current-time" role="timer" aria-label="time">&nbsp;</div>
<div class="jp-duration" role="timer" aria-label="duration">&nbsp;</div>
<div class="jp-controls-holder">
<div class="jp-controls">
<button class="jp-previous" role="button" tabindex="0">previous</button>
<button class="jp-play" role="button" tabindex="0">play</button>
<button class="jp-next" role="button" tabindex="0">next</button>
<button class="jp-stop" role="button" tabindex="0">stop</button>
</div>
<div class="jp-volume-controls">
<button class="jp-mute" role="button" tabindex="0">mute</button>
<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
</div>
<div class="jp-toggles">
<button class="jp-repeat" role="button" tabindex="0">repeat</button>
<button class="jp-shuffle" role="button" tabindex="0">shuffle</button>
<button class="jp-full-screen" role="button" tabindex="0">full screen</button>
</div>
</div>
<div class="jp-details">
<div class="jp-title" aria-label="title">&nbsp;</div>
</div>
</div>
</div>
<div class="jp-playlist">
<ul>
<!-- The method Playlist.displayPlaylist() uses this unordered list -->
<li>&nbsp;</li>
</ul>
</div>
<div class="jp-no-solution">
<span>Update Required</span>
To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
</div>
</div>
</div>

View File

@ -1,43 +0,0 @@
<div id="{{WRAPPER}}" class="jp-video " role="application" aria-label="media player">
<div class="jp-type-single">
<div id="{{JPLAYER}}" class="jp-jplayer"></div>
<div class="jp-gui">
<div class="jp-video-play">
<button class="jp-video-play-icon" role="button" tabindex="0">play</button>
</div>
<div class="jp-interface">
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-current-time" role="timer" aria-label="time">&nbsp;</div>
<div class="jp-duration" role="timer" aria-label="duration">&nbsp;</div>
<div class="jp-controls-holder">
<div class="jp-controls">
<button class="jp-play" role="button" tabindex="0">play</button>
<button class="jp-stop" role="button" tabindex="0">stop</button>
</div>
<div class="jp-volume-controls">
<button class="jp-mute" role="button" tabindex="0">mute</button>
<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
</div>
<div class="jp-toggles">
<button class="jp-repeat" role="button" tabindex="0">repeat</button>
<button class="jp-full-screen" role="button" tabindex="0">full screen</button>
</div>
</div>
<div class="jp-details">
<div class="jp-title" aria-label="title">&nbsp;</div>
</div>
</div>
</div>
<div class="jp-no-solution">
<span>Update Required</span>
To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
</div>
</div>
</div>

View File

@ -66,22 +66,23 @@ input:focus {border-color: #75A1F0; outline: none; box-shadow: 0 0 12px #75A1F0;
.actions #submit:active{background: #444;}
.forget_password{display:inline-block;margin: 10px 0 0 125px;color: #999;}
.msg{color: #f60;text-align: center;margin-bottom: -10px;padding-top: 10px;font-size:14px;font-style: italic;}
.msg{color:#f44336;text-align: center;margin-bottom: -10px;padding-top: 10px;font-size:14px;}
.common_footer{color:#eee;position: absolute;bottom:0px;text-align: center;width: 100%;
background:#444;background: rgba(0,0,0,0.3);padding: 10px;
}
.common_footer a:hover{color:#fff;}
.success{padding:10px;color: #3c763d;background-color: #dff0d8;border:#d6e9c6 1px solid;}
.error{padding:10px;color:#a94442;background-color: #f2dede;border:#ebccd1 1px solid;font-size:14px;}
.error a{background-color: #f2dede;border:#ebccd1 1px solid;}
h4{margin: 0;padding: 3px 10px;border-left: 3px solid;margin-bottom: 10px;}
.guest{text-align:center;margin: 0 auto;padding: 20px 0 0px 0;}
.guest a{color:#69C;text-decoration:none;border:2px solid #cdf;
.loginbox .success{padding:10px;color: #3c763d;background-color: #dff0d8;border:#d6e9c6 1px solid;}
.loginbox .error{padding:10px;color:#a94442;background-color: #f2dede;border:#ebccd1 1px solid;font-size:14px;}
.loginbox .error a{background-color: #f2dede;border:#ebccd1 1px solid;}
.loginbox h4{margin: 0;padding: 3px 10px;border-left: 3px solid;margin-bottom: 10px;}
.loginbox .guest{text-align:center;margin: 0 auto;padding: 20px 0 0px 0;}
.loginbox .guest a{color:#69C;text-decoration:none;border:2px solid #cdf;
border-radius:20px;padding:6px 2em;;display: inline-block;}
.guest a i{padding-left: 8px;}
.guest a:hover{color:#f60;border-color:#f60;}
.loginbox .guest a i{padding-left: 8px;}
.loginbox .guest a:hover{color:#f60;border-color:#f60;}
.menu_group{

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More