From be924c4fa0cef8a09052efa5941a7f02ee1faf17 Mon Sep 17 00:00:00 2001 From: dcsjapan Date: Tue, 19 Jan 2016 10:16:07 +0900 Subject: [PATCH] Extract translations for the Add Extension modal - Extracts three translations for this placeholder dialog. - Adds a forum link to one of the translations. --- js/admin/src/components/AddExtensionModal.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/admin/src/components/AddExtensionModal.js b/js/admin/src/components/AddExtensionModal.js index 6173211d3..0cdbe975f 100644 --- a/js/admin/src/components/AddExtensionModal.js +++ b/js/admin/src/components/AddExtensionModal.js @@ -21,9 +21,9 @@ export default class AddExtensionModal extends Modal { content() { return (
-

One day in the not-too-distant future, this dialog will allow you to add an extension to your forum with ease. We're building an ecosystem as we speak!

-

In the meantime, if you manage to get your hands on a new extension, simply drop it in your forum's extensions directory.

-

If you're a developer, you can read the docs and have a go at building your own.

+

{app.translator.trans('core.admin.add_extension.temporary_text')}

+

{app.translator.trans('core.admin.add_extension.install_text', {a: })}

+

{app.translator.trans('core.admin.add_extension.developer_text', {a: })}

); }