Unverified Commit df3906d6 authored by Nicolas Widart's avatar Nicolas Widart Committed by GitHub

Merge pull request #653 from mikemand/feature/less-ambiguous-checkbox

Rename the label for the status checkbox to make it less ambiguous
parents c429d7a5 cc774dfe
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
<el-form-item :label="trans('pages.status')" <el-form-item :label="trans('pages.status')"
:class="{'el-form-item is-error': form.errors.has(locale + '.status') }"> :class="{'el-form-item is-error': form.errors.has(locale + '.status') }">
<el-checkbox v-model="page[locale].status">{{ trans('pages.status') }}</el-checkbox> <el-checkbox v-model="page[locale].status">{{ trans('pages.live') }}</el-checkbox>
<div class="el-form-item__error" v-if="form.errors.has(locale + '.status')" <div class="el-form-item__error" v-if="form.errors.has(locale + '.status')"
v-text="form.errors.first(locale + '.status')"></div> v-text="form.errors.first(locale + '.status')"></div>
</el-form-item> </el-form-item>
......
...@@ -20,6 +20,7 @@ return [ ...@@ -20,6 +20,7 @@ return [
'is homepage' => 'Homepage ?', 'is homepage' => 'Homepage ?',
'body' => 'Body', 'body' => 'Body',
'status' => 'Status', 'status' => 'Status',
'live' => 'Page Live on Website',
'pages were updated' => 'Pages were updated', 'pages were updated' => 'Pages were updated',
'back to index' => 'Go back to the pages index', 'back to index' => 'Go back to the pages index',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment