mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-28 00:00:49 +00:00
Update VE core submodule to master (1f76dea7e)
New changes: 6cde8742e i18n: Rename keys for error messages in rebaser Local changes: * Rebaser i18n message renames Change-Id: I0c2e3a956c81f625822bacd40835dc4fadb57211
This commit is contained in:
parent
6bcf1b9ca5
commit
a4cafb1691
|
@ -1510,12 +1510,12 @@
|
||||||
"ext.visualEditor.checkList"
|
"ext.visualEditor.checkList"
|
||||||
],
|
],
|
||||||
"messages": [
|
"messages": [
|
||||||
"visualeditor-corrupted-document-error",
|
|
||||||
"visualeditor-corrupted-document-title",
|
|
||||||
"visualeditor-missing-document-error",
|
|
||||||
"visualeditor-missing-document-title",
|
|
||||||
"visualeditor-rebase-client-author-name",
|
"visualeditor-rebase-client-author-name",
|
||||||
"visualeditor-rebase-client-connecting"
|
"visualeditor-rebase-client-connecting",
|
||||||
|
"visualeditor-rebase-corrupted-document-error",
|
||||||
|
"visualeditor-rebase-corrupted-document-title",
|
||||||
|
"visualeditor-rebase-missing-document-error",
|
||||||
|
"visualeditor-rebase-missing-document-title"
|
||||||
],
|
],
|
||||||
"targets": [
|
"targets": [
|
||||||
"desktop",
|
"desktop",
|
||||||
|
|
2
lib/ve
2
lib/ve
|
@ -1 +1 @@
|
||||||
Subproject commit 7ab2ebb0fa5114723dbdfc7de18dff7cd92b8ff3
|
Subproject commit 1f76dea7e63ca6b7bd5f1ef6a372c1878429f973
|
|
@ -110,9 +110,9 @@
|
||||||
if ( error ) {
|
if ( error ) {
|
||||||
OO.ui.alert(
|
OO.ui.alert(
|
||||||
$( '<p>' ).append(
|
$( '<p>' ).append(
|
||||||
ve.htmlMsg( 'visualeditor-corrupted-document-error', $( '<pre>' ).text( error.stack ) )
|
ve.htmlMsg( 'visualeditor-rebase-corrupted-document-error', $( '<pre>' ).text( error.stack ) )
|
||||||
),
|
),
|
||||||
{ title: ve.msg( 'visualeditor-corrupted-document-title' ), size: 'large' }
|
{ title: ve.msg( 'visualeditor-rebase-corrupted-document-title' ), size: 'large' }
|
||||||
).then( function () {
|
).then( function () {
|
||||||
// eslint-disable-next-line no-use-before-define
|
// eslint-disable-next-line no-use-before-define
|
||||||
showForm( true );
|
showForm( true );
|
||||||
|
|
Loading…
Reference in a new issue