Update labels to make editor reload feature more understandable

pull/4318/head
Thibaud Colas 2018-04-02 17:50:02 +03:00
rodzic 9918ee2b02
commit 411895e450
3 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -26,7 +26,7 @@ exports[`EditorFallback #error #showContent 1`] = `
onClick={[Function]} onClick={[Function]}
type="button" type="button"
> >
Reload the editor Reload saved content
</button> </button>
</div> </div>
<div <div
@ -69,7 +69,7 @@ exports[`EditorFallback #error #showError 1`] = `
onClick={[Function]} onClick={[Function]}
type="button" type="button"
> >
Reload the editor Reload saved content
</button> </button>
</div> </div>
<div <div
@ -119,7 +119,7 @@ exports[`EditorFallback #error works 1`] = `
onClick={[Function]} onClick={[Function]}
type="button" type="button"
> >
Reload the editor Reload saved content
</button> </button>
</div> </div>
<div <div

Wyświetl plik

@ -37,7 +37,7 @@ global.wagtailConfig = {
UNDO: 'Undo', UNDO: 'Undo',
REDO: 'Redo', REDO: 'Redo',
RELOAD_PAGE: 'Reload the page', RELOAD_PAGE: 'Reload the page',
RELOAD_EDITOR: 'Reload the editor', RELOAD_EDITOR: 'Reload saved content',
SHOW_LATEST_CONTENT: 'Show latest content', SHOW_LATEST_CONTENT: 'Show latest content',
EDITOR_CRASH: 'The editor just crashed. Content has been reset to the last saved version.', EDITOR_CRASH: 'The editor just crashed. Content has been reset to the last saved version.',
}, },

Wyświetl plik

@ -45,7 +45,7 @@
UNDO: "{% trans 'Undo' %}", UNDO: "{% trans 'Undo' %}",
REDO: "{% trans 'Redo' %}", REDO: "{% trans 'Redo' %}",
RELOAD_PAGE: "{% trans 'Reload the page' %}", RELOAD_PAGE: "{% trans 'Reload the page' %}",
RELOAD_EDITOR: "{% trans 'Reload the editor' %}", RELOAD_EDITOR: "{% trans 'Reload saved content' %}",
SHOW_LATEST_CONTENT: "{% trans 'Show latest content' %}", SHOW_LATEST_CONTENT: "{% trans 'Show latest content' %}",
EDITOR_CRASH: "{% trans 'The editor just crashed. Content has been reset to the last saved version.' %}", EDITOR_CRASH: "{% trans 'The editor just crashed. Content has been reset to the last saved version.' %}",
}; };