changes title text for public interests list

This commit is contained in:
decabeza
2017-12-06 15:40:50 +01:00
parent 864c022b08
commit 83c23c35c4
3 changed files with 6 additions and 6 deletions

View File

@@ -13,8 +13,8 @@ en:
phone_number_label: Phone number phone_number_label: Phone number
public_activity_label: Keep my list of activities public public_activity_label: Keep my list of activities public
public_interests_label: Keep my interests public public_interests_label: Keep my interests public
public_interests_my_title_list: List of interests (tags of elements you follow) public_interests_my_title_list: Tags of elements you follow
public_interests_user_title_list: List of interests (tags of elements this user follows) public_interests_user_title_list: Tags of elements this user follows
public_interests_my_empty_list: You do not follow any elements yet. public_interests_my_empty_list: You do not follow any elements yet.
public_interests_user_empty_list: This user does not follow any elements yet. public_interests_user_empty_list: This user does not follow any elements yet.
save_changes_submit: Save changes save_changes_submit: Save changes

View File

@@ -13,8 +13,8 @@ es:
phone_number_label: Teléfono phone_number_label: Teléfono
public_activity_label: Mostrar públicamente mi lista de actividades public_activity_label: Mostrar públicamente mi lista de actividades
public_interests_label: Mostrar públicamente mis intereses public_interests_label: Mostrar públicamente mis intereses
public_interests_my_title_list: Lista de intereses (etiquetas de los elementos que sigues) public_interests_my_title_list: Etiquetas de los elementos que sigues
public_interests_user_title_list: Lista de intereses (etiquetas de los elementos seguidos este usuario) public_interests_user_title_list: Etiquetas de los elementos que sigue este usuario
public_interests_my_empty_list: Aún no sigues ningún elemento. public_interests_my_empty_list: Aún no sigues ningún elemento.
public_interests_user_empty_list: Este usuario no sigue ningún elemento todavía. public_interests_user_empty_list: Este usuario no sigue ningún elemento todavía.
save_changes_submit: Guardar cambios save_changes_submit: Guardar cambios

View File

@@ -314,7 +314,7 @@ feature 'Users' do
@user.update(public_interests: true) @user.update(public_interests: true)
visit user_path(@user) visit user_path(@user)
expect(page).to have_content("List of interests (tags of elements this user follows)") expect(page).to have_content("Tags of elements this user follows")
end end
scenario 'Should display custom interests title when user is visiting own user page' do scenario 'Should display custom interests title when user is visiting own user page' do
@@ -322,7 +322,7 @@ feature 'Users' do
login_as(@user) login_as(@user)
visit user_path(@user) visit user_path(@user)
expect(page).to have_content("List of interests (tags of elements you follow)") expect(page).to have_content("Tags of elements you follow")
end end
scenario 'Should display generic empty interests list message when visited user has not interests defined' do scenario 'Should display generic empty interests list message when visited user has not interests defined' do