Browse Source

Change remote interaction dialog to use specific actions (#9743)

* Change remote interaction dialog to use specific actions

Instead of just "interact", use different strings based on whether
it's a reply, reblog or favourite. Add explanation why the step
is necessary in the first place

* Remove obsolete strings
pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
5654535728
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
33 changed files with 31 additions and 92 deletions
  1. +5
    -0
      app/controllers/remote_interaction_controller.rb
  2. +3
    -1
      app/views/remote_follow/new.html.haml
  3. +7
    -3
      app/views/remote_interaction/new.html.haml
  4. +3
    -3
      app/views/stream_entries/_detailed_status.html.haml
  5. +3
    -3
      app/views/stream_entries/_simple_status.html.haml
  6. +0
    -3
      config/locales/ar.yml
  7. +0
    -3
      config/locales/ast.yml
  8. +0
    -3
      config/locales/ca.yml
  9. +0
    -3
      config/locales/co.yml
  10. +0
    -3
      config/locales/cs.yml
  11. +0
    -3
      config/locales/cy.yml
  12. +0
    -3
      config/locales/da.yml
  13. +0
    -3
      config/locales/de.yml
  14. +0
    -3
      config/locales/el.yml
  15. +10
    -2
      config/locales/en.yml
  16. +0
    -3
      config/locales/eo.yml
  17. +0
    -3
      config/locales/es.yml
  18. +0
    -3
      config/locales/eu.yml
  19. +0
    -3
      config/locales/fa.yml
  20. +0
    -3
      config/locales/fr.yml
  21. +0
    -3
      config/locales/gl.yml
  22. +0
    -3
      config/locales/it.yml
  23. +0
    -3
      config/locales/ja.yml
  24. +0
    -3
      config/locales/ka.yml
  25. +0
    -3
      config/locales/ko.yml
  26. +0
    -3
      config/locales/nl.yml
  27. +0
    -3
      config/locales/oc.yml
  28. +0
    -3
      config/locales/pl.yml
  29. +0
    -3
      config/locales/pt-BR.yml
  30. +0
    -3
      config/locales/ru.yml
  31. +0
    -3
      config/locales/sk.yml
  32. +0
    -2
      config/locales/sl.yml
  33. +0
    -3
      config/locales/sr.yml

+ 5
- 0
app/controllers/remote_interaction_controller.rb View File

@ -5,6 +5,7 @@ class RemoteInteractionController < ApplicationController
layout 'modal'
before_action :set_interaction_type
before_action :set_status
before_action :set_body_classes
@ -45,4 +46,8 @@ class RemoteInteractionController < ApplicationController
@body_classes = 'modal-layout'
@hide_header = true
end
def set_interaction_type
@interaction_type = %w(reply reblog favourite).include?(params[:type]) ? params[:type] : 'reply'
end
end

+ 3
- 1
app/views/remote_follow/new.html.haml View File

@ -16,4 +16,6 @@
.actions
= f.button :button, t('remote_follow.proceed'), type: :submit
%p.hint.subtle-hint= t('remote_follow.no_account_html', sign_up_path: open_registrations? ? new_user_registration_path : 'https://joinmastodon.org/#getting-started')
%p.hint.subtle-hint
= t('remote_follow.reason_html', instance: site_hostname)
= t('remote_follow.no_account_html', sign_up_path: open_registrations? ? new_user_registration_path : 'https://joinmastodon.org/#getting-started')

+ 7
- 3
app/views/remote_interaction/new.html.haml View File

@ -1,6 +1,6 @@
.form-container
.follow-prompt
%h2= t(9;remote_interaction.prompt';)
%h2= t(4;remote_interaction.#{@interaction_type}.prompt";)
.public-layout
.activity-stream.activity-stream--highlighted
@ -9,9 +9,13 @@
= simple_form_for @remote_follow, as: :remote_follow, url: remote_interaction_path(@status) do |f|
= render 'shared/error_messages', object: @remote_follow
= hidden_field_tag :type, @interaction_type
= f.input :acct, placeholder: t('remote_follow.acct'), input_html: { autocapitalize: 'none', autocorrect: 'off' }
.actions
= f.button :button, t(9;remote_interaction.proceed';), type: :submit
= f.button :button, t(4;remote_interaction.#{@interaction_type}.proceed";), type: :submit
%p.hint.subtle-hint= t('remote_follow.no_account_html', sign_up_path: open_registrations? ? new_user_registration_path : 'https://joinmastodon.org/#getting-started')
%p.hint.subtle-hint
= t('remote_follow.reason_html', instance: site_hostname)
= t('remote_follow.no_account_html', sign_up_path: open_registrations? ? new_user_registration_path : 'https://joinmastodon.org/#getting-started')

+ 3
- 3
app/views/stream_entries/_detailed_status.html.haml View File

@ -43,7 +43,7 @@
- else
= link_to status.application.name, status.application.website, class: 'detailed-status__application', target: '_blank', rel: 'noopener'
·
= link_to remote_interaction_path(status), class: 'modal-button detailed-status__link' do
= link_to remote_interaction_path(status, type: :reply), class: 'modal-button detailed-status__link' do
= fa_icon('reply')
%span.detailed-status__reblogs>= number_to_human status.replies_count, strip_insignificant_zeros: true
= " "
@ -55,12 +55,12 @@
%span.detailed-status__link<
= fa_icon('lock')
- else
= link_to remote_interaction_path(status), class: 'modal-button detailed-status__link' do
= link_to remote_interaction_path(status, type: :reblog), class: 'modal-button detailed-status__link' do
= fa_icon('retweet')
%span.detailed-status__reblogs>= number_to_human status.reblogs_count, strip_insignificant_zeros: true
= " "
·
= link_to remote_interaction_path(status), class: 'modal-button detailed-status__link' do
= link_to remote_interaction_path(status, type: :favourite), class: 'modal-button detailed-status__link' do
= fa_icon('star')
%span.detailed-status__favorites>= number_to_human status.favourites_count, strip_insignificant_zeros: true
= " "

+ 3
- 3
app/views/stream_entries/_simple_status.html.haml View File

@ -37,15 +37,15 @@
.status__action-bar
.status__action-bar__counter
= link_to remote_interaction_path(status), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
= link_to remote_interaction_path(status, type: :reply), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
= fa_icon 'reply fw'
.status__action-bar__counter__label= obscured_counter status.replies_count
= link_to remote_interaction_path(status), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
= link_to remote_interaction_path(status, type: :reblog), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
- if status.public_visibility? || status.unlisted_visibility?
= fa_icon 'retweet fw'
- elsif status.private_visibility?
= fa_icon 'lock fw'
- else
= fa_icon 'envelope fw'
= link_to remote_interaction_path(status), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
= link_to remote_interaction_path(status, type: :favourite), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
= fa_icon 'star fw'

+ 0
- 3
config/locales/ar.yml View File

@ -730,9 +730,6 @@ ar:
no_account_html: أليس عندك حساب بعدُ ؟ يُمْكنك <a href='%{sign_up_path}' target='_blank'>التسجيل مِن هنا</a>
proceed: أكمل المتابعة
prompt: 'إنك بصدد متابعة :'
remote_interaction:
proceed: إبدأ التفاعل
prompt: 'تريد التفاعُل مع هذا التبويق:'
remote_unfollow:
error: خطأ
title: العنوان

+ 0
- 3
config/locales/ast.yml View File

@ -268,9 +268,6 @@ ast:
no_account_html: "¿Nun tienes una cuenta? Pues <a href='%{sign_up_path}' target='_blank'>rexistrate equí</a>"
proceed: Siguir
prompt: 'Vas siguir a:'
remote_interaction:
proceed: Interactuar
prompt: 'Quies interactuar con esti toot:'
remote_unfollow:
error: Fallu
sessions:

+ 0
- 3
config/locales/ca.yml View File

@ -702,9 +702,6 @@ ca:
no_account_html: No tens cap compte? Pots <a href='%{sign_up_path}' target='_blank'>registrar-te aquí</a>
proceed: Comença a seguir
prompt: 'Seguiràs a:'
remote_interaction:
proceed: Procedeix a interactuar
prompt: 'Vols interactuar amb aquest toot:'
remote_unfollow:
error: Error
title: Títol

+ 0
- 3
config/locales/co.yml View File

@ -704,9 +704,6 @@ co:
no_account_html: Ùn avete micca un contu? Pudete <a href='%{sign_up_path}' target='_blank'>arregistravi quì</a>
proceed: Cuntinuà per siguità
prompt: 'Avete da siguità:'
remote_interaction:
proceed: Cunfirmà l'interazzione
prompt: 'Vulete interagisce cù u statutu:'
remote_unfollow:
error: Errore
title: Titulu

+ 0
- 3
config/locales/cs.yml View File

@ -714,9 +714,6 @@ cs:
no_account_html: Ještě nemáte účet? Můžete se <a href='%{sign_up_path}' target='_blank'>registrovat zde</a>
proceed: Pokračovat ke sledování
prompt: 'Budete sledovat:'
remote_interaction:
proceed: Pokračovat k interakci
prompt: 'Chcete interagovat s tímto tootem:'
remote_unfollow:
error: Chyba
title: Nadpis

+ 0
- 3
config/locales/cy.yml View File

@ -660,9 +660,6 @@ cy:
no_account_html: Heb gyfrif? Mae modd i chi <a href='%{sign_up_path}' target='_blank'>gofrestru yma</a>
proceed: Ymlaen i ddilyn
prompt: 'Yr ydych am ddilyn:'
remote_interaction:
proceed: Ymlaen i ryngweithio
prompt: 'Rydych eisiau rhyngweithio a''r tŵt hwn:'
remote_unfollow:
error: Gwall
title: Teitl

+ 0
- 3
config/locales/da.yml View File

@ -675,9 +675,6 @@ da:
no_account_html: Har du ikke en konto? Du kan <a href='%{sign_up_path}' target='_blank'>oprette dig her</a>
proceed: Fortsæt for at følge
prompt: 'Du er ved at følge:'
remote_interaction:
proceed: Fortsæt for at interagere
prompt: 'Du ønsker at interagere med dette trut:'
remote_unfollow:
error: Fejl
title: Titel

+ 0
- 3
config/locales/de.yml View File

@ -704,9 +704,6 @@ de:
no_account_html: Noch keinen Account? Du kannst dich <a href='%{sign_up_path}' target='_blank'>hier anmelden</a>
proceed: Weiter
prompt: 'Du wirst dieser Person folgen:'
remote_interaction:
proceed: Fortfahren zum Interagieren
prompt: 'Du wirst mit diesem Beitrag interagieren:'
remote_unfollow:
error: Fehler
title: Titel

+ 0
- 3
config/locales/el.yml View File

@ -703,9 +703,6 @@ el:
no_account_html: Δεν έχεις λογαριασμό; Μπορείς <a href='%{sign_up_path}' target='_blank'>να γραφτείς εδώ</a>
proceed: Συνέχισε για να ακολουθήσεις
prompt: 'Θα ακολουθήσεις:'
remote_interaction:
proceed: Συνέχισε για να αλληλεπιδράσεις
prompt: 'Θέλεις να αλληλεπιδράσεις με αυτό το τουτ:'
remote_unfollow:
error: Σφάλμα
title: Τίτλος

+ 10
- 2
config/locales/en.yml View File

@ -723,9 +723,17 @@ en:
no_account_html: Don't have an account? You can <a href='%{sign_up_path}' target='_blank'>sign up here</a>
proceed: Proceed to follow
prompt: 'You are going to follow:'
reason_html: "<strong>Why is this step necessary?</strong> <code>%{instance}</code> might not be the server where you are registered, so we need to redirect you to your home server first."
remote_interaction:
proceed: Proceed to interact
prompt: 'You want to interact with this toot:'
favourite:
proceed: Proceed to favourite
prompt: 'You want to favourite this toot:'
reblog:
proceed: Proceed to boost
prompt: 'You want to boost this toot:'
reply:
proceed: Proceed to reply
prompt: 'You want to reply to this toot:'
remote_unfollow:
error: Error
title: Title

+ 0
- 3
config/locales/eo.yml View File

@ -696,9 +696,6 @@ eo:
no_account_html: Ĉu vi ne havas konton? Vi povas <a href='%{sign_up_path}' target='_blank'>registriĝi tie</a>
proceed: Daŭrigi por eksekvi
prompt: 'Vi eksekvos:'
remote_interaction:
proceed: Efektivigi la interagon
prompt: 'Vi volas interagi kun ĉi tiu mesaĝo:'
remote_unfollow:
error: Eraro
title: Titolo

+ 0
- 3
config/locales/es.yml View File

@ -681,9 +681,6 @@ es:
no_account_html: "¿No tienes una cuenta? Puedes <a href='%{sign_up_path}' target='_blank'>registrarte aqui</a>"
proceed: Proceder a seguir
prompt: 'Vas a seguir a:'
remote_interaction:
proceed: Proceder para interactuar
prompt: 'Quieres interactuar con este toot:'
remote_unfollow:
error: Error
title: Título

+ 0
- 3
config/locales/eu.yml View File

@ -698,9 +698,6 @@ eu:
no_account_html: Ez duzu konturik? <a href='%{sign_up_path}' target='_blank'>Izena eman</a> dezakezu
proceed: Ekin jarraitzeari
prompt: 'Hau jarraituko duzu:'
remote_interaction:
proceed: Jarraitu interakziora
prompt: 'Toot honekin interakzioa nahi duzu:'
remote_unfollow:
error: Errorea
title: Izenburua

+ 0
- 3
config/locales/fa.yml View File

@ -681,9 +681,6 @@ fa:
no_account_html: هنوز عضو نیستید؟ <a href='%{sign_up_path}' target='_blank'>این‌جا می‌توانید حساب باز کنید</a>
proceed: درخواست پیگیری
prompt: 'شما قرار است این حساب را پیگیری کنید:'
remote_interaction:
proceed: ادامهٔ برهم‌کنش
prompt: 'شما می‌خواهید دربارهٔ این بوق کاری کنید:'
remote_unfollow:
error: خطا
title: عنوان

+ 0
- 3
config/locales/fr.yml View File

@ -704,9 +704,6 @@ fr:
no_account_html: Vous n’avez pas de compte ? Vous pouvez <a href='%{sign_up_path}' target='_blank'>vous inscrire ici</a>
proceed: Confirmer l’abonnement
prompt: 'Vous allez suivre :'
remote_interaction:
proceed: Confirmer l’interaction
prompt: 'Vous désirez interagir avec ce pouet :'
remote_unfollow:
error: Erreur
title: Titre

+ 0
- 3
config/locales/gl.yml View File

@ -704,9 +704,6 @@ gl:
no_account_html: Non ten unha conta? Pode <a href='%{sign_up_path}' target='_blank'>rexistrarse aquí</a>
proceed: Proceda para seguir
prompt: 'Vostede vai seguir:'
remote_interaction:
proceed: Proceda para interactuar
prompt: 'Vostede quere interactuar con este toot:'
remote_unfollow:
error: Fallo
title: Título

+ 0
- 3
config/locales/it.yml View File

@ -660,9 +660,6 @@ it:
no_account_html: Non hai un account? Puoi <a href='%{sign_up_path}' target='_blank'>iscriverti qui</a>
proceed: Conferma
prompt: 'Stai per seguire:'
remote_interaction:
proceed: Continua per interagire
prompt: 'Vuoi interagire con questo toot:'
remote_unfollow:
error: Errore
title: Titolo

+ 0
- 3
config/locales/ja.yml View File

@ -703,9 +703,6 @@ ja:
no_account_html: アカウントをお持ちではないですか?<a href='%{sign_up_path}' target='_blank'>こちら</a>からサインアップできます
proceed: フォローする
prompt: 'フォローしようとしています:'
remote_interaction:
proceed: 進む
prompt: 'このトゥートに返信しようとしています:'
remote_unfollow:
error: エラー
title: タイトル

+ 0
- 3
config/locales/ka.yml View File

@ -651,9 +651,6 @@ ka:
no_account_html: არ გაქვთ ანგარიში? შეგიძლიათ <a href='%{sign_up_path}' target='_blank'>დარეგისტრირდეთ აქ</a>
proceed: გააგრძელეთ გასაყოლად
prompt: 'თქვენ გაჰყვებით:'
remote_interaction:
proceed: გააგრძელეთ ურთიერთქმედება
prompt: 'თქვენ გსურთ ურთიერთქმედება ამ ტუტთან:'
remote_unfollow:
error: შეცდომა
title: სათაური

+ 0
- 3
config/locales/ko.yml View File

@ -706,9 +706,6 @@ ko:
no_account_html: 계정이 없나요? <a href='%{sign_up_path}' target='_blank'>여기에서 가입 할 수 있습니다</a>
proceed: 팔로우 하기
prompt: '팔로우 하려 하고 있습니다:'
remote_interaction:
proceed: 진행
prompt: '이 게시물에 상호작용하려 하고 있습니다:'
remote_unfollow:
error: 에러
title: 타이틀

+ 0
- 3
config/locales/nl.yml View File

@ -704,9 +704,6 @@ nl:
no_account_html: Heb je geen account? Je kunt er <a href='%{sign_up_path}' target='_blank'>hier een registreren</a>
proceed: Ga verder om te volgen
prompt: 'Jij gaat volgen:'
remote_interaction:
proceed: Ga de interactie aan
prompt: 'Jij wilt de interactie aangaan met deze toot:'
remote_unfollow:
error: Fout
title: Titel

+ 0
- 3
config/locales/oc.yml View File

@ -760,9 +760,6 @@ oc:
no_account_html: Avètz pas cap de compte ? Podètz <a href='%{sign_up_path}' target='_blank'>vos marcar aquí</a>
proceed: Clicatz per sègre
prompt: 'Sètz per sègre :'
remote_interaction:
proceed: Confirmar l’interaccion
prompt: 'Volètz interagir amb aqueste tut :'
remote_unfollow:
error: Error
title: Títol

+ 0
- 3
config/locales/pl.yml View File

@ -715,9 +715,6 @@ pl:
no_account_html: Nie masz konta? Możesz <a href='%{sign_up_path}' target='_blank'>zarejestrować się tutaj</a>
proceed: Śledź
prompt: 'Zamierzasz śledzić:'
remote_interaction:
proceed: Przejdź do interakcji
prompt: 'Chcesz dokonać interakcji z tym wpisem:'
remote_unfollow:
error: Błąd
title: Tytuł

+ 0
- 3
config/locales/pt-BR.yml View File

@ -702,9 +702,6 @@ pt-BR:
no_account_html: Não tem uma conta? Você pode <a href='%{sign_up_path}' target='_blank'>cadastrar-se aqui</a>
proceed: Prosseguir para seguir
prompt: 'Você irá seguir:'
remote_interaction:
proceed: Continue para interagir
prompt: 'Você quer interagir com este toot:'
remote_unfollow:
error: Erro
title: Título

+ 0
- 3
config/locales/ru.yml View File

@ -683,9 +683,6 @@ ru:
no_account_html: Нет учётной записи? Вы можете <a href='%{sign_up_path}' target='_blank'>зарегистрироваться здесь</a>
proceed: Продолжить подписку
prompt: 'Вы хотите подписаться на:'
remote_interaction:
proceed: Продолжить
prompt: 'Вы собираетесь взаимодействовать со статусом:'
remote_unfollow:
error: Ошибка
title: Заголовок

+ 0
- 3
config/locales/sk.yml View File

@ -714,9 +714,6 @@ sk:
no_account_html: Nemáš ešte účet? Môžeš sa <a href='%{sign_up_path}' target='_blank'>zaregistrovať tu</a>
proceed: Začni následovať
prompt: 'Budeš sledovať:'
remote_interaction:
proceed: Pokračuj k interakcii
prompt: 'Chceš narábať s týmto príspevkom:'
remote_unfollow:
error: Chyba
title: Názov

+ 0
- 2
config/locales/sl.yml View File

@ -130,8 +130,6 @@ sl:
most_recent_activity: Zadnja aktivnost
most_recent_ip: Zadnji IP
promote: Spodbujanje
remote_interaction:
prompt: 'Želite interakcijo s tem trobom:'
statuses:
pin_errors:
ownership: Trob nekoga drugega ne more biti pripet

+ 0
- 3
config/locales/sr.yml View File

@ -701,9 +701,6 @@ sr:
no_account_html: Немате налог? Можете се <a href='%{sign_up_path}' target='_blank'>пријавити овде</a>
proceed: Наставите да би сте запратили
prompt: 'Запратићете:'
remote_interaction:
proceed: Наставите за интеракцију
prompt: 'Желите да интерактирате са овом трубом:'
remote_unfollow:
error: Грешка
title: Наслов

Loading…
Cancel
Save