diff --git a/app/admin/Service.php b/app/admin/Service.php index 1c233717f..165bf1d75 100644 --- a/app/admin/Service.php +++ b/app/admin/Service.php @@ -31,7 +31,7 @@ class Service extends Plugin * 定义插件名称 * @var string */ - protected $appName = '系统配置管理'; + protected $appName = '系统后台管理'; /** * 定义安装包名 @@ -60,7 +60,7 @@ class Service extends Plugin [ 'name' => '权限管理', 'subs' => [ - ['name' => '访问权限管理', 'icon' => 'layui-icon layui-icon-vercode', 'node' => 'admin/auth/index'], + ['name' => '系统权限管理', 'icon' => 'layui-icon layui-icon-vercode', 'node' => 'admin/auth/index'], ['name' => '系统用户管理', 'icon' => 'layui-icon layui-icon-username', 'node' => 'admin/user/index'], ], ], diff --git a/app/admin/controller/Auth.php b/app/admin/controller/Auth.php index a3ccae6df..e446f8eab 100644 --- a/app/admin/controller/Auth.php +++ b/app/admin/controller/Auth.php @@ -96,16 +96,18 @@ class Auth extends Controller $map = $this->_vali(['auth.require#id' => '权限ID不能为空!']); if (input('action') === 'get') { if ($this->app->isDebug()) AdminService::clear(); - $nodes = AdminService::getTree(SystemNode::mk()->where($map)->column('node')); - usort($nodes, static function ($a, $b) { + $nodes = SystemNode::mk()->where($map)->column('node'); + foreach ($nodes as &$node) $node['title'] = lang($node['title']); + $ztree = AdminService::getTree($nodes); + usort($ztree, static function ($a, $b) { if (explode('-', $a['node'])[0] !== explode('-', $b['node'])[0]) { if (stripos($a['node'], 'plugin-') === 0) return 1; } return $a['node'] === $b['node'] ? 0 : ($a['node'] > $b['node'] ? 1 : -1); }); [$ps, $cs] = [Plugin::get(), (array)$this->app->config->get('app.app_names', [])]; - foreach ($nodes as &$t) $t['title'] = $cs[$t['node']] ?? (($ps[$t['node']] ?? [])['name'] ?? $t['title']); - $this->success('获取权限节点成功!', $nodes); + foreach ($ztree as &$n) $n['title'] = lang($cs[$n['node']] ?? (($ps[$n['node']] ?? [])['name'] ?? $n['title'])); + $this->success('获取权限节点成功!', $ztree); } elseif (input('action') === 'save') { [$post, $data] = [$this->request->post(), []]; foreach ($post['nodes'] ?? [] as $node) { diff --git a/app/admin/controller/Base.php b/app/admin/controller/Base.php index 9ae1bad09..50eba9e99 100644 --- a/app/admin/controller/Base.php +++ b/app/admin/controller/Base.php @@ -74,7 +74,7 @@ class Base extends Controller { if ($this->request->isGet()) { $this->types = SystemBase::types(); - $this->types[] = '--- 新增类型 ---'; + $this->types[] = '--- ' . lang('新增类型') . ' ---'; $this->type = $this->get['type'] ?? ($this->types[0] ?? '-'); } else { $map = []; @@ -83,7 +83,7 @@ class Base extends Controller $map[] = ['type', '=', $data['type']]; $map[] = ['id', '<>', $data['id'] ?? 0]; if (SystemBase::mk()->where($map)->count() > 0) { - $this->error("同类型的数据编码已经存在!"); + $this->error("数据编码已经存在!"); } } } diff --git a/app/admin/controller/Config.php b/app/admin/controller/Config.php index 60e0b4deb..4cc94b075 100644 --- a/app/admin/controller/Config.php +++ b/app/admin/controller/Config.php @@ -73,7 +73,6 @@ class Config extends Controller */ public function system() { - $this->_applyFormToken(); if ($this->request->isGet()) { $this->title = '修改系统参数'; $this->themes = static::themes; @@ -83,10 +82,12 @@ class Config extends Controller // 修改网站后台入口路径 if (!empty($post['xpath'])) { if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $post['xpath'])) { - $this->error('后台入口名称需要是由英文字母开头!'); + $this->error('后台入口格式错误!'); } - if ($post['xpath'] !== 'admin' && file_exists($this->app->getBasePath() . $post['xpath'])) { - $this->error("后台入口名称{$post['xpath']}已经存在应用!"); + if ($post['xpath'] !== 'admin') { + if (is_dir(syspath("app/{$post['xpath']}")) || !empty(Plugin::get($post['xpath']))) { + $this->error(lang('已存在 %s 应用!', [$post['xpath']])); + } } RuntimeService::set(null, [$post['xpath'] => 'admin']); } @@ -99,7 +100,7 @@ class Config extends Controller // 数据数据到系统配置表 foreach ($post as $k => $v) sysconf($k, $v); sysoplog('系统配置管理', "修改系统参数成功"); - $this->success('修改系统参数成功!', admuri('admin/config/index')); + $this->success('数据保存成功!', admuri('admin/config/index')); } } diff --git a/app/admin/controller/File.php b/app/admin/controller/File.php index 2f54fa4c7..c93977880 100644 --- a/app/admin/controller/File.php +++ b/app/admin/controller/File.php @@ -99,7 +99,6 @@ class File extends Controller * 清理重复文件 * @auth true * @return void - * @throws \think\db\exception\DbException */ public function distinct() { diff --git a/app/admin/controller/Index.php b/app/admin/controller/Index.php index 720058438..2a1c56468 100644 --- a/app/admin/controller/Index.php +++ b/app/admin/controller/Index.php @@ -126,7 +126,7 @@ class Index extends Controller { $this->_applyFormToken(); if (AdminService::getUserId() !== intval($id)) { - $this->error('只能修改当前用户的密码!'); + $this->error('禁止修改他人密码!'); } if ($this->app->request->isGet()) { $this->verify = true; diff --git a/app/admin/controller/Oplog.php b/app/admin/controller/Oplog.php index be693f88f..28039b72c 100644 --- a/app/admin/controller/Oplog.php +++ b/app/admin/controller/Oplog.php @@ -78,7 +78,7 @@ class Oplog extends Controller throw $exception; } catch (\Exception $exception) { trace_file($exception); - $this->error("日志清理失败,{$exception->getMessage()}"); + $this->error(lang("日志清理失败,%s", [$exception->getMessage()])); } } diff --git a/app/admin/controller/api/Queue.php b/app/admin/controller/api/Queue.php index 236ae3362..b54912b8e 100644 --- a/app/admin/controller/api/Queue.php +++ b/app/admin/controller/api/Queue.php @@ -90,14 +90,15 @@ class Queue extends Controller if (AdminService::isSuper()) try { $message = $this->app->console->call('xadmin:queue', ['status'])->fetch(); if (preg_match('/process.*?\d+.*?running/', $message)) { - echo "已启动"; + echo "{$this->app->lang->get('已启动')}"; } else { - echo "未启动"; + echo "{$this->app->lang->get('未启动')}"; } } catch (\Error|\Exception $exception) { - echo "异 常"; + echo "{$this->app->lang->get('异 常')}"; } else { - echo "无权限"; + $message = lang('只有超级管理员才能操作!'); + echo "{$this->app->lang->get('无权限')}"; } } diff --git a/app/admin/lang/en-us.php b/app/admin/lang/en-us.php new file mode 100644 index 000000000..77a613019 --- /dev/null +++ b/app/admin/lang/en-us.php @@ -0,0 +1,195 @@ + 'Basic information', + '安全设置' => 'Security setting', + '缓存加速' => 'Cache acceleration', + '清理缓存' => 'Clean cache', + '配色方案' => 'Color scheme', + '立即登录' => 'Login', + '退出登录' => 'Logout', + '清空日志缓存成功!' => 'Successfully cleared the log cache.', + '获取任务进度成功!' => 'Successfully obtained task progress.', + '网站缓存加速成功!' => 'Website cache acceleration successful.', + '请使用超管账号操作!' => 'Please use a super managed account to operate.', + '停止任务监听服务成功!' => 'Successfully stopped task listening service.', + '任务监听服务启动成功!' => 'Task monitoring service started successfully.', + '任务监听服务已经启动!' => 'The task monitoring service has started.', + '没有找到需要停止的服务!' => 'No services found that need to be stopped.', + '已切换后台编辑器!' => 'Switched to background editor.', + // 其他搜索器提示 + '请选择登录时间' => 'Please select the Login time', + '请选择创建时间' => 'Please select the creation time', + '请输入账号或名称' => 'Please enter an account or name', + '请输入权限名称' => 'Please enter the permission name', + '请输入数据编码' => 'Please enter the data code', + '请输入数据名称' => 'Please enter the data name', + '请输入文件名称' => 'Please enter the file name', + '请输入文件哈希' => 'Please enter the file hash', + '请输入操作节点' => 'Please enter the operate node', + '请输入操作内容' => 'Please enter the operate content', + '请输入访问地址' => 'Please enter the access Geoip', + // 系统配置 + '运行模式' => 'Running Mode', + '生产模式' => 'Production mode', + '开发模式' => 'Development mode', + '以开发模式运行' => 'Running in Development mode', + '以生产模式运行' => 'Running in Production mode', + '清理无效配置' => 'Clean up Invalid Configurations', + '修改系统参数' => 'Modify System Parameters', + '清理系统配置成功!' => 'Successfully cleaned.', + '自适应模式' => 'Adaptive Mode', + '富编辑器' => 'RichText Editor', + '存储引擎' => 'Storage Engine', + '系统参数' => 'System Parameter', + '网站名称' => 'Site Name', + '管理程序名称' => 'Program Name', + '管理程序版本' => 'Program Version', + '公安备案号' => 'Public security registration number', + '网站备案号' => 'Website registration number', + '网站版权信息' => 'Website copyright information', + '系统信息' => 'System Information', + '应用插件' => 'Plugin Information', + '核心框架' => 'Core Framework', + '平台框架' => 'Platform Framework', + '操作系统' => 'Operating System', + '运行环境' => 'Runtime Environment', + '仅开发模式可见' => 'Visible only in Development mode', + '仅生产模式可见' => 'Visible only in Production mode', + '插件名称' => 'Plugin Name', + '应用名称' => 'App Name', + '插件包名' => 'Package Name', + '插件版本' => 'Plugin Version', + '授权协议' => 'License', + '文件默认存储方式' => 'Default storage method for file upload', + '当前系统配置参数' => 'Current system configuration parameters', + '仅超级管理员可配置' => 'Only super administrators can configure', + + // 系统任务管理 + '优化数据库' => 'Optimize Database', + '开启服务' => 'Start Service', + '关闭服务' => 'Shutdown Service', + '定时清理' => 'Regular cleaning', + '服务状态' => 'Service', + '任务统计' => 'Total', + '编号名称' => 'Name', + '任务指令' => 'Command', + '任务状态' => 'Status', + '计划时间' => 'scheduled time', + '任务名称' => 'Name', + '检查中' => 'Checking', + '任务计划' => 'Scheduled', + '重 置' => 'Reset', + '日 志' => 'Logs', + '异 常' => 'Abnormal', + '无权限' => 'Denied', + '已启动' => 'Started', + '未启动' => 'Stopped', + // 数据字典管理 + '数据编码' => 'Code', + '数据名称' => 'Name', + '操作账号' => 'User', + '操作节点' => "Node", + '操作行为' => 'Action', + '操作内容' => "Content", + '访问地址' => 'Geo IP', + '网络服务商' => 'ISP.', + '日志清理成功!' => 'Logger Clear Complate.', + '成功清理所有日志' => 'Successfully cleared all logs.', + // 系统文件管理 + '文件名称' => 'Name', + '文件哈希' => "HASH", + '文件大小' => "Size", + '文件后缀' => 'Exts', + '存储方式' => 'Storage Type', + '清理重复' => 'Clear Replace', + '上传方式' => 'Upload Type', + '查看文件' => 'View', + '文件链接' => 'Link', + '秒传' => 'Speedy', + '普通' => 'Normal', + // 系统菜单管理 + '图 标' => "Icon", + '添加菜单' => 'Add', + '禁用菜单' => 'Forbid', + '激活菜单' => "Resume", + '系统菜单' => 'Menus', + '菜单名称' => 'Name', + '跳转链接' => 'Link', + '上级菜单' => 'Parent', + '菜单链接' => 'Link', + '链接参数' => 'Params', + '权限节点' => "Node", + '菜单图标' => 'Icon', + '选择图标' => 'Select Icon', + // 系统权限管理 + "授 权" => 'Auth', + '添加权限' => 'Add', + '权限名称' => "Name", + '权限描述' => 'Description', + '请输入权限描述' => 'Please enter a permission description', + // 系统用户管理 + '账号名称' => 'Username', + '添加用户' => 'Add User', + '最后登录' => "Last Login Time", + '头像' => "Head", + '登录账号' => 'Username', + '用户名称' => 'Nickname', + '登录次数' => 'Login Times', + '系统用户' => 'System User', + '密 码' => 'Password', + '系统用户管理' => 'Users', +]); \ No newline at end of file diff --git a/app/admin/route/demo.php b/app/admin/route/demo.php index 80547e4e0..0452a4f1d 100644 --- a/app/admin/route/demo.php +++ b/app/admin/route/demo.php @@ -20,33 +20,33 @@ use think\admin\service\RuntimeService; /*! 演示环境禁止操作路由绑定 */ if (RuntimeService::check('demo')) { Library::$sapp->route->post('index/pass', function () { - return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']); + return json(['code' => 0, 'info' => lang('演示环境禁止修改用户密码!')]); }); Library::$sapp->route->post('config/system', function () { - return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']); + return json(['code' => 0, 'info' => lang('演示环境禁止修改系统配置!')]); }); Library::$sapp->route->post('config/storage', function () { - return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']); + return json(['code' => 0, 'info' => lang('演示环境禁止修改系统配置!')]); }); Library::$sapp->route->post('menu', function () { - return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']); + return json(['code' => 0, 'info' => lang('演示环境禁止给菜单排序!')]); }); Library::$sapp->route->post('menu/index', function () { - return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']); + return json(['code' => 0, 'info' => lang('演示环境禁止给菜单排序!')]); }); Library::$sapp->route->post('menu/add', function () { - return json(['code' => 0, 'info' => '演示环境禁止添加菜单!']); + return json(['code' => 0, 'info' => lang('演示环境禁止添加菜单!')]); }); Library::$sapp->route->post('menu/edit', function () { - return json(['code' => 0, 'info' => '演示环境禁止编辑菜单!']); + return json(['code' => 0, 'info' => lang('演示环境禁止编辑菜单!')]); }); Library::$sapp->route->post('menu/state', function () { - return json(['code' => 0, 'info' => '演示环境禁止禁用菜单!']); + return json(['code' => 0, 'info' => lang('演示环境禁止禁用菜单!')]); }); Library::$sapp->route->post('menu/remove', function () { - return json(['code' => 0, 'info' => '演示环境禁止删除菜单!']); + return json(['code' => 0, 'info' => lang('演示环境禁止删除菜单!')]); }); Library::$sapp->route->post('user/pass', function () { - return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']); + return json(['code' => 0, 'info' => lang('演示环境禁止修改密码!')]); }); } \ No newline at end of file diff --git a/app/admin/view/api/upload.js b/app/admin/view/api/upload.js index 6c2ab3930..f1e7adb17 100644 --- a/app/admin/view/api/upload.js +++ b/app/admin/view/api/upload.js @@ -2,10 +2,10 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { allowMime = JSON.parse('{$exts|raw}'); function UploadAdapter(elem, done) { - return new (function (elem, done, that) { + return new (function (elem, done) { + let that = this; /*! 初始化变量 */ - that = this; this.option = {elem: $(elem), exts: [], mimes: []}; this.option.size = this.option.elem.data('size') || 0; this.option.safe = this.option.elem.data('safe') ? 1 : 0; @@ -69,21 +69,22 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { // 文件推送 Adapter.prototype.upload = function (files, done) { - var that = this.init(); + let that = this.init(); layui.each(files, function (index, file) { that.count.total++, file.index = index, that.files[index] = file; if (!that.option.hide && !file.notify) { file.notify = new NotifyExtend(file); } if (that.option.size && file.size > that.option.size) { - that.event('upload.error', {file: file}, file, '大小超出限制!'); + that.event('upload.error', {file: file}, file, '{:lang("大小超出限制!")}'); } }); layui.each(files, function (index, file) { // 禁传异常状态文件 if (typeof file.xstate === 'number' && file.xstate === -1) return; // 图片限宽限高压缩 - if (/^image\//.test(file.type) && (file.maxWidth + file.maxHeight + file.cutWidth + file.cutHeight > 0 || file.quality !== 1)) { + let isGif = /^image\/gif/.test(file.type); + if (!isGif && /^image\//.test(file.type) && (file.maxWidth + file.maxHeight + file.cutWidth + file.cutHeight > 0 || file.quality !== 1)) { require(['compressor'], function (Compressor) { let options = {quality: file.quality, resize: 'cover'}; if (file.cutWidth) options.width = file.cutWidth; @@ -97,7 +98,7 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { that.event('upload.hash', file).request(file, done); }); }, error: function () { - that.event('upload.error', {file: file}, file, '压缩失败'); + that.event('upload.error', {file: file}, file, '{:lang("图片压缩失败!")}'); } })); }); @@ -111,14 +112,14 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { // 文件上传 Adapter.prototype.request = function (file, done) { - var that = this, data = {key: file.xkey, safe: that.option.safe, uptype: that.option.type}; + let that = this, data = {key: file.xkey, safe: that.option.safe, uptype: that.option.type}; data.size = file.size, data.name = file.name, data.hash = file.xmd5, data.mime = file.type, data.xext = file.xext; jQuery.ajax("{:url('admin/api.upload/state',[],false,true)}", { data: data, method: 'post', success: function (ret) { file.id = ret.data.id || 0, file.xurl = ret.data.url; file.xsafe = ret.data.safe, file.xpath = ret.data.key, file.xtype = ret.data.uptype; if (parseInt(ret.code) === 404) { - var uploader = {}; + let uploader = {}; uploader.uptype = ret.data.uptype; uploader.url = ret.data.server; uploader.head = {}; @@ -157,15 +158,14 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { uploader.form.append('Content-Disposition', 'inline;filename=' + encodeURIComponent(file.name)); } uploader.form.append('file', file, file.name), jQuery.ajax({ - xhrFields: {withCredentials: ret.data.uptype === 'local'}, headers: uploader.head, - url: uploader.url, data: uploader.form, type: uploader.type || 'post', xhr: function (xhr) { + xhrFields: {withCredentials: ret.data.uptype === 'local'}, headers: uploader.head, url: uploader.url, data: uploader.form, type: uploader.type || 'post', xhr: function (xhr) { xhr = new XMLHttpRequest(); return xhr.upload.addEventListener('progress', function (event) { file.xtotal = event.total, file.xloaded = event.loaded || 0; that.progress((file.xloaded / file.xtotal * 100).toFixed(2), file) }), xhr; }, contentType: false, error: function () { - that.event('upload.error', {file: file}, file, '接口异常'); + that.event('upload.error', {file: file}, file, '{:lang("上传接口异常!")}'); }, processData: false, success: function (ret) { // 兼容数据格式 if (typeof ret === 'string' && ret.length > 0) try { @@ -174,23 +174,23 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { console.log(e) } if (typeof ret !== 'object') { - ret = {code: 1, url: file.xurl, info: '上传成功'}; + ret = {code: 1, url: file.xurl, info: '{:lang("文件上传成功!")}'}; } /*! 检查单个文件上传返回的结果 */ if (typeof ret === 'object' && ret.code < 1) { - that.event('upload.error', {file: file}, file, ret.info || '上传失败'); + that.event('upload.error', {file: file}, file, ret.info || '{:lang("文件上传失败!")}'); } else if (uploader.uptype === 'alist' && parseInt(ret.code) !== 200) { - that.event('upload.error', {file: file}, file, ret.message || '上传失败'); + that.event('upload.error', {file: file}, file, ret.message || '{:lang("文件上传失败!")}'); } else { - that.done(ret, file.index, file, done, '上传成功'); + that.done(ret, file.index, file, done, '{:lang("文件上传成功!")}'); } } }); } else if (parseInt(ret.code) === 200) { (file.xurl = ret.data.url), that.progress('100.00', file); - that.done({code: 1, url: file.xurl, info: file.xstats}, file.index, file, done, '秒传成功'); + that.done({code: 1, url: file.xurl, info: file.xstats}, file.index, file, done, '{:lang("文件秒传成功!")}'); } else { - that.event('upload.error', {file: file}, file, ret.info || ret.error.message || '上传出错!'); + that.event('upload.error', {file: file}, file, ret.info || ret.error.message || '{:lang("文件上传出错!")}'); } } }); @@ -205,8 +205,8 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { // 上传结果 Adapter.prototype.done = function (ret, idx, file, done, message) { /*! 检查单个文件上传返回的结果 */ - if (ret.code < 1) return $.msg.tips(ret.info || '文件上传失败!'); - if (typeof file.xurl !== 'string') return $.msg.tips('无效的文件上传对象!'); + if (ret.code < 1) return $.msg.tips(ret.info || '{:lang("文件上传失败!")}'); + if (typeof file.xurl !== 'string') return $.msg.tips('{:lang("无效的文件上传对象!")}'); jQuery.post("{:url('admin/api.upload/done',[],false,true)}", {id: file.id, hash: file.xmd5}); /*! 单个文件上传成功结果处理 */ if (typeof done === 'function') { @@ -220,9 +220,9 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { if (this.count.success + this.count.error >= this.count.total) { this.option.hide || $.msg.close(this.loader); if (this.option.mult > 0 && this.option.elem.data('input')) { - var urls = this.option.elem.data('input').value || []; + let urls = this.option.elem.data('input').value || []; if (typeof urls === 'string') urls = urls.split('|'); - for (var i in this.files) urls.push(this.files[i].xurl); + for (let i in this.files) urls.push(this.files[i].xurl); $(this.option.elem.data('input')).val(urls.join('|')).trigger('change', this.files); } this.event('upload.complete', {file: this.files}, file).init().uploader && this.uploader.reload(); @@ -250,11 +250,11 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { * @return {Promise} */ Adapter.prototype.hash = function (file) { - var defer = jQuery.Deferred(); + let defer = jQuery.Deferred(); file.xext = file.name.indexOf('.') > -1 ? file.name.split('.').pop() : 'tmp'; /*! 兼容不能计算文件 HASH 的情况 */ - var IsDate = '{$nameType|default=""}'.indexOf('date') > -1; + let IsDate = '{$nameType|default=""}'.indexOf('date') > -1; if (!window.FileReader || IsDate) return jQuery.when((function (xmd5, chars) { while (xmd5.length < 32) xmd5 += chars.charAt(Math.floor(Math.random() * chars.length)); return SetFileXdata(file, xmd5, 6), defer.promise(); @@ -271,8 +271,8 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { } function LoadNextChunk(file) { - var that = this, reader = new FileReader(), spark = new SparkMD5.ArrayBuffer(); - var slice = File.prototype.slice || File.prototype.mozSlice || File.prototype.webkitSlice; + let that = this, reader = new FileReader(), spark = new SparkMD5.ArrayBuffer(); + let slice = File.prototype.slice || File.prototype.mozSlice || File.prototype.webkitSlice; this.chunkIdx = 0, this.chunkSize = 2097152, this.chunkTotal = Math.ceil(file.size / this.chunkSize); reader.onload = function (event) { spark.append(event.target.result); @@ -297,8 +297,8 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { * @constructor */ function NotifyExtend(file) { - var that = this; - this.notify = Notify.notify({width: 260, title: file.name, showProgress: true, description: '上传进度 0%', type: 'default', position: 'top-right', closeTimeout: 0}); + let that = this, message = "{:lang('上传进度 %s', ['0%'])}"; + this.notify = Notify.notify({width: 260, title: file.name, showProgress: true, description: message, type: 'default', position: 'top-right', closeTimeout: 0}); this.$elem = $(this.notify.notification.nodes); this.$elem.find('.growl-notification__progress').addClass('is-visible'); this.$elem.find('.growl-notification__progress-bar').addClass('transition'); @@ -307,12 +307,12 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { this.$elem.find('.growl-notification__progress-bar').css({width: number + '%'}); return this; }, this.setError = function (message) { - this.$elem.find('.growl-notification__desc').html(message || '文件上传失败!'); + this.$elem.find('.growl-notification__desc').html(message || '{:lang("文件上传失败!")}'); this.$elem.removeClass('growl-notification--default').addClass('growl-notification--error') return this.close(); }, this.setSuccess = function (message) { this.setProgress('100.00'); - this.$elem.find('.growl-notification__desc').html(message || '文件上传成功!'); + this.$elem.find('.growl-notification__desc').html(message || '{:lang("文件上传成功!")}'); this.$elem.removeClass('growl-notification--default').addClass('growl-notification--success'); return this.close(); }, this.close = function (timeout) { diff --git a/app/admin/view/api/upload/image.html b/app/admin/view/api/upload/image.html index 3d3329acf..5e9d06979 100644 --- a/app/admin/view/api/upload/image.html +++ b/app/admin/view/api/upload/image.html @@ -1,11 +1,11 @@