diff --git a/src/css/style.less b/src/css/style.less index e85f117e..4b42407d 100644 --- a/src/css/style.less +++ b/src/css/style.less @@ -338,6 +338,10 @@ div.br { text-align: right; } +.example-help-block { + text-align: left; + float: left; +} .quota-help-block { text-align: left; line-height: 1.2; diff --git a/src/locales/en.json b/src/locales/en.json index f3dcb64c..cee2b1a5 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -64,6 +64,7 @@ "unknown_argument" : "Unknown argument : %s", "api_not_responding" : "API is not responding", "error_retrieve_feed" : "Could not retrieve feed : %s", + "form_input_example" : "Example: %s", "confirm_delete" : "Are you sure you want to delete %s ?", "confirm_change_maindomain" : "Are you sure you want to change the main domain ?", diff --git a/src/views/app/app_install.ms b/src/views/app/app_install.ms index 2915dcc1..ffc0cad8 100644 --- a/src/views/app/app_install.ms +++ b/src/views/app/app_install.ms @@ -50,6 +50,9 @@ {{/if}} + {{#if example}} + {{t 'form_input_example' example}} + {{/if}} {{#if help}} {{{help}}} {{/if}}