update database
This commit is contained in:
@@ -255,7 +255,7 @@ var render = function() {
|
|||||||
name: "c-tooltip",
|
name: "c-tooltip",
|
||||||
rawName: "v-c-tooltip",
|
rawName: "v-c-tooltip",
|
||||||
value: "Создать новый",
|
value: "Создать новый",
|
||||||
expression: "'Создать новый'"
|
expression: "'Создать'"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
staticClass: "float-right",
|
staticClass: "float-right",
|
||||||
|
|||||||
@@ -454,7 +454,7 @@ var render = function() {
|
|||||||
name: "c-tooltip",
|
name: "c-tooltip",
|
||||||
rawName: "v-c-tooltip",
|
rawName: "v-c-tooltip",
|
||||||
value: "Создать новый",
|
value: "Создать новый",
|
||||||
expression: "'Создать новый'"
|
expression: "'Создать'"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
staticClass: "float-right",
|
staticClass: "float-right",
|
||||||
|
|||||||
@@ -479,7 +479,7 @@ var render = function() {
|
|||||||
name: "c-tooltip",
|
name: "c-tooltip",
|
||||||
rawName: "v-c-tooltip",
|
rawName: "v-c-tooltip",
|
||||||
value: "Создать новый",
|
value: "Создать новый",
|
||||||
expression: "'Создать новый'"
|
expression: "'Создать'"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
staticClass: "float-right",
|
staticClass: "float-right",
|
||||||
|
|||||||
@@ -119688,7 +119688,7 @@ function configRoutes() {
|
|||||||
component: Documents
|
component: Documents
|
||||||
}, {
|
}, {
|
||||||
path: 'create',
|
path: 'create',
|
||||||
name: 'Создать новый',
|
name: 'Создать',
|
||||||
component: DocumentCreate
|
component: DocumentCreate
|
||||||
}, {
|
}, {
|
||||||
path: ':document',
|
path: ':document',
|
||||||
@@ -119755,7 +119755,7 @@ function configRoutes() {
|
|||||||
}, {
|
}, {
|
||||||
path: 'create',
|
path: 'create',
|
||||||
meta: {
|
meta: {
|
||||||
label: 'Создать новый'
|
label: 'Создать'
|
||||||
},
|
},
|
||||||
name: 'Create User',
|
name: 'Create User',
|
||||||
component: CreateUser
|
component: CreateUser
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
class="float-right"
|
class="float-right"
|
||||||
color="primary"
|
color="primary"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
v-c-tooltip="'Создать новый'"
|
v-c-tooltip="'Создать'"
|
||||||
@click="showCreate"
|
@click="showCreate"
|
||||||
>
|
>
|
||||||
<CIcon name="cil-plus" />
|
<CIcon name="cil-plus" />
|
||||||
|
|||||||
@@ -222,7 +222,7 @@ function configRoutes () {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'create',
|
path: 'create',
|
||||||
name: 'Создать новый',
|
name: 'Создать',
|
||||||
component: DocumentCreate
|
component: DocumentCreate
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -302,7 +302,7 @@ function configRoutes () {
|
|||||||
{
|
{
|
||||||
path: 'create',
|
path: 'create',
|
||||||
meta: {
|
meta: {
|
||||||
label: 'Создать новый'
|
label: 'Создать'
|
||||||
},
|
},
|
||||||
name: 'Create User',
|
name: 'Create User',
|
||||||
component: CreateUser
|
component: CreateUser
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
class="float-right"
|
class="float-right"
|
||||||
color="primary"
|
color="primary"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
v-c-tooltip="'Создать новый'"
|
v-c-tooltip="'Создать'"
|
||||||
>
|
>
|
||||||
<CIcon name="cil-plus" />
|
<CIcon name="cil-plus" />
|
||||||
</CButton>
|
</CButton>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
class="float-right"
|
class="float-right"
|
||||||
color="primary"
|
color="primary"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
v-c-tooltip="'Создать новый'"
|
v-c-tooltip="'Создать'"
|
||||||
>
|
>
|
||||||
<CIcon name="cil-user-follow" />
|
<CIcon name="cil-user-follow" />
|
||||||
</CButton>
|
</CButton>
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ class AuthorizationException extends Exception
|
|||||||
*/
|
*/
|
||||||
public function __construct($message = null, $code = null, Throwable $previous = null)
|
public function __construct($message = null, $code = null, Throwable $previous = null)
|
||||||
{
|
{
|
||||||
parent::__construct($message ?? 'This action is unauthorized.', 0, $previous);
|
parent::__construct($message ?? 'Это действие не авторизовано.', 0, $previous);
|
||||||
|
|
||||||
$this->code = $code ?: 0;
|
$this->code = $code ?: 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ class ValidationException extends Exception
|
|||||||
*/
|
*/
|
||||||
public function __construct($validator, $response = null, $errorBag = 'default')
|
public function __construct($validator, $response = null, $errorBag = 'default')
|
||||||
{
|
{
|
||||||
parent::__construct('The given data was invalid.');
|
parent::__construct('Указанные данные недействительны.');
|
||||||
|
|
||||||
$this->response = $response;
|
$this->response = $response;
|
||||||
$this->errorBag = $errorBag;
|
$this->errorBag = $errorBag;
|
||||||
|
|||||||
Reference in New Issue
Block a user