add some missing locales
This commit is contained in:
parent
984abbe738
commit
3a4ff794de
|
@ -26,19 +26,19 @@
|
||||||
%ul.nav.navbar-nav.navbar-right
|
%ul.nav.navbar-nav.navbar-right
|
||||||
- unless @user.nil?
|
- unless @user.nil?
|
||||||
- unless @user == current_user
|
- unless @user == current_user
|
||||||
%li.hidden-xs{"data-toggle" => "tooltip", "data-placement" => "bottom", title: "Manage group memberships"}
|
%li.hidden-xs{"data-toggle" => "tooltip", "data-placement" => "bottom", title: t('views.actions.group')}
|
||||||
%a{href: '#', data: { target: "#modal-group-memberships", toggle: :modal }}
|
%a{href: '#', data: { target: "#modal-group-memberships", toggle: :modal }}
|
||||||
%i.fa.fa-users.hidden-xs
|
%i.fa.fa-users.hidden-xs
|
||||||
%span.visible-xs Manage group memberships
|
%span.visible-xs= t('views.actions.group')
|
||||||
= render "layouts/notifications"
|
= render "layouts/notifications"
|
||||||
%li.hidden-xs{"data-toggle" => "tooltip", "data-placement" => "bottom", title: "Ask a question"}
|
%li.hidden-xs{"data-toggle" => "tooltip", "data-placement" => "bottom", title: t('views.actions.ask_question')}
|
||||||
.btn.btn-link.navbar-btn{name: "toggle-all-ask", "data-target" => "#modal-ask-followers", "data-toggle" => "modal", :type => "button"}
|
.btn.btn-link.navbar-btn{name: "toggle-all-ask", "data-target" => "#modal-ask-followers", "data-toggle" => "modal", :type => "button"}
|
||||||
%i.fa.fa-pencil-square-o
|
%i.fa.fa-pencil-square-o
|
||||||
= render "layouts/profile"
|
= render "layouts/profile"
|
||||||
- else
|
- else
|
||||||
%ul.nav.navbar-nav.navbar-right
|
%ul.nav.navbar-nav.navbar-right
|
||||||
= nav_entry "Sign in", new_user_session_path
|
= nav_entry t('views.sessions.create'), new_user_session_path
|
||||||
= nav_entry "Sign up", new_user_registration_path
|
= nav_entry t('views.actions.new'), new_user_registration_path
|
||||||
|
|
||||||
- if user_signed_in?
|
- if user_signed_in?
|
||||||
= render 'shared/modal_ask_followers'
|
= render 'shared/modal_ask_followers'
|
||||||
|
|
|
@ -4,18 +4,18 @@
|
||||||
.modal-header
|
.modal-header
|
||||||
%button.close{"data-dismiss" => "modal", :type => "button"}
|
%button.close{"data-dismiss" => "modal", :type => "button"}
|
||||||
%span{"aria-hidden" => "true"} ×
|
%span{"aria-hidden" => "true"} ×
|
||||||
%span.sr-only Close
|
%span.sr-only= t 'views.actions.close'
|
||||||
%h4#modal-ask-followers-label.modal-title Ask your followers
|
%h4#modal-ask-followers-label.modal-title= t 'views.modal.ask.title'
|
||||||
.modal-body
|
.modal-body
|
||||||
%textarea.form-control{:name => "qb-all-question", :placeholder => "Type your question here…"}
|
%textarea.form-control{:name => "qb-all-question", :placeholder => "Type your question here…"}
|
||||||
.modal-footer
|
.modal-footer
|
||||||
- if current_user.groups.count > 0
|
- if current_user.groups.count > 0
|
||||||
%label
|
%label
|
||||||
Choose group:
|
= t 'views.modal.ask.choose'
|
||||||
%select{name: 'qb-all-rcpt', class: 'form-control', autocomplete: 'off'}
|
%select{name: 'qb-all-rcpt', class: 'form-control', autocomplete: 'off'}
|
||||||
%option{value: 'followers', selected: true} Followers
|
%option{value: 'followers', selected: true}= t('views.general.follower').pluralize(2)
|
||||||
%optgroup{label: 'Groups'}
|
%optgroup{label: 'Groups'}
|
||||||
- current_user.groups.each do |group|
|
- current_user.groups.each do |group|
|
||||||
%option{value: "grp:#{group.name}"}= group.display_name
|
%option{value: "grp:#{group.name}"}= group.display_name
|
||||||
%button.btn.btn-default{"data-dismiss" => "modal", :type => "button"} Cancel
|
%button.btn.btn-default{"data-dismiss" => "modal", :type => "button"}= t 'views.actions.cancel'
|
||||||
%button.btn.btn-primary{name: 'qb-all-ask', :type => "button", data: {loading_text: 'Asking...' }} Ask
|
%button.btn.btn-primary{name: 'qb-all-ask', :type => "button", data: {loading_text: t('views.modal.ask.loading') }}= t 'views.actions.ask'
|
||||||
|
|
|
@ -210,6 +210,8 @@ en:
|
||||||
members: "Members"
|
members: "Members"
|
||||||
actions:
|
actions:
|
||||||
title: "Actions"
|
title: "Actions"
|
||||||
|
ask: "Ask"
|
||||||
|
ask_question: "Ask a question"
|
||||||
answer: "Answer"
|
answer: "Answer"
|
||||||
options: "Options"
|
options: "Options"
|
||||||
anonymous: "Hide your name"
|
anonymous: "Hide your name"
|
||||||
|
@ -347,7 +349,7 @@ en:
|
||||||
password_confirm: "Confirm password"
|
password_confirm: "Confirm password"
|
||||||
password_help: "Leave this blank if you don't want to change it"
|
password_help: "Leave this blank if you don't want to change it"
|
||||||
password_current: "Current password"
|
password_current: "Current password"
|
||||||
password_current_help:
|
password_current_help: "We need your current password to confirm your changes"
|
||||||
delete: "Delete my account"
|
delete: "Delete my account"
|
||||||
unsatisfied: "Unsatisfied?"
|
unsatisfied: "Unsatisfied?"
|
||||||
back: "Back"
|
back: "Back"
|
||||||
|
@ -374,6 +376,10 @@ en:
|
||||||
disconnect: "Disconnect"
|
disconnect: "Disconnect"
|
||||||
confirm: "Really disconnect service %{service}?"
|
confirm: "Really disconnect service %{service}?"
|
||||||
modal:
|
modal:
|
||||||
|
ask:
|
||||||
|
title: "Ask your followers"
|
||||||
|
choose: "Choose group:"
|
||||||
|
loading: "Asking..."
|
||||||
bancontrol:
|
bancontrol:
|
||||||
title: "Ban Control Center"
|
title: "Ban Control Center"
|
||||||
ban: "Ban?"
|
ban: "Ban?"
|
||||||
|
|
Loading…
Reference in New Issue