diff options
-rw-r--r-- | app/views/my/page_layout.rhtml | 1 | ||||
-rw-r--r-- | config/locales/en.yml | 1 | ||||
-rw-r--r-- | config/locales/fr.yml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/app/views/my/page_layout.rhtml b/app/views/my/page_layout.rhtml index b00734c8f..cb96342cb 100644 --- a/app/views/my/page_layout.rhtml +++ b/app/views/my/page_layout.rhtml @@ -36,6 +36,7 @@ function removeBlock(block) { <div class="contextual"> <% form_tag({:action => "add_block"}, :id => "block-form") do %> +<%= label_tag('block-select', l(:label_my_page_block)) %> <%= select_tag 'block', "<option></option>" + options_for_select(@block_options), :id => "block-select" %> <%= link_to_remote l(:button_add), {:url => { :action => "add_block" }, diff --git a/config/locales/en.yml b/config/locales/en.yml index 351de3b1b..81d744f93 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -458,6 +458,7 @@ en: label_my_page: My page label_my_account: My account label_my_projects: My projects + label_my_page_block: My page block label_administration: Administration label_login: Sign in label_logout: Sign out diff --git a/config/locales/fr.yml b/config/locales/fr.yml index f1d3a553f..9d18bf379 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -478,6 +478,7 @@ fr: label_my_page: Ma page label_my_account: Mon compte label_my_projects: Mes projets + label_my_page_block: Ma page bloque label_administration: Administration label_login: Connexion label_logout: Déconnexion |