diff --git a/app/views/settings/featured_tags/index.html.haml b/app/views/settings/featured_tags/index.html.haml index dcefe1b3b8..b6dcd664cf 100644 --- a/app/views/settings/featured_tags/index.html.haml +++ b/app/views/settings/featured_tags/index.html.haml @@ -5,19 +5,4 @@ %h1= t('settings.profile') = render partial: 'settings/shared/profile_navigation' -= simple_form_for @featured_tag, url: settings_featured_tags_path do |f| - = render 'shared/error_messages', object: @featured_tag - - %p.lead= t('featured_tags.hint_html') - - .fields-group - = f.input :name, - hint: featured_tags_hint(@recently_used_tags), - wrapper: :with_block_label - - .actions - = f.button :button, t('featured_tags.add_new'), type: :submit - -%hr.spacer/ - -= render collection: @featured_tags, partial: 'settings/featured_tags/featured_tag' += render partial: 'settings/shared/profile_new_notice' diff --git a/app/views/settings/profiles/show.html.haml b/app/views/settings/profiles/show.html.haml index 7d7eab3545..6e0cacf4bf 100644 --- a/app/views/settings/profiles/show.html.haml +++ b/app/views/settings/profiles/show.html.haml @@ -5,76 +5,4 @@ %h1= t('settings.profile') = render partial: 'settings/shared/profile_navigation' -- if Mastodon::Feature.profile_redesign_enabled? - %aside.callout - = material_symbol 'info' - .content - .body - %p.title= t('edit_profile.redesign_title') - %p= t('edit_profile.redesign_body') - = link_to t('edit_profile.redesign_button'), '/profile/edit' - -= simple_form_for @account, url: settings_profile_path, html: { id: :edit_profile } do |f| - = render 'shared/error_messages', object: @account - - %p.lead= t('edit_profile.hint_html') - - %h2= t('edit_profile.basic_information') - - .fields-row - .fields-row__column.fields-row__column-6 - .fields-group - = f.input :display_name, wrapper: :with_block_label, input_html: { maxlength: Account::DISPLAY_NAME_LENGTH_LIMIT, data: { default: @account.username } } - - .fields-group - = f.input :note, wrapper: :with_block_label, input_html: { maxlength: Account::NOTE_LENGTH_LIMIT } - - .fields-row__column.fields-group.fields-row__column-6 - .input.with_block_label - %label= t('simple_form.labels.defaults.fields') - %span.hint= t('simple_form.hints.account.fields') - - = f.simple_fields_for :fields do |fields_f| - .row - = fields_f.input :name, placeholder: t('simple_form.labels.account.fields.name'), input_html: { maxlength: Account::Field::MAX_CHARACTERS_LOCAL } - = fields_f.input :value, placeholder: t('simple_form.labels.account.fields.value'), input_html: { maxlength: Account::Field::MAX_CHARACTERS_LOCAL } - - .fields-row - .fields-row__column.fields-row__column-6 - .fields-group - = f.input :avatar, - hint: t('simple_form.hints.defaults.avatar', dimensions: Account::Avatar::AVATAR_GEOMETRY, size: number_to_human_size(Account::Avatar::AVATAR_LIMIT)), - input_html: { accept: Account::Avatar::AVATAR_IMAGE_MIME_TYPES }, - wrapper: :with_block_label - - .fields-row__column.fields-row__column-6 - .fields-group - = image_tag @account.avatar.url, class: 'fields-group__thumbnail', id: 'account_avatar-preview' - - if @account.avatar.present? - = link_to settings_profile_picture_path('avatar'), data: { method: :delete }, class: 'link-button link-button--destructive' do - = material_symbol 'delete' - = t('generic.delete') - - .fields-row - .fields-row__column.fields-row__column-6 - .fields-group - = f.input :header, - hint: t('simple_form.hints.defaults.header', dimensions: Account::Header::HEADER_GEOMETRY, size: number_to_human_size(Account::Header::HEADER_LIMIT)), - input_html: { accept: Account::Header::HEADER_IMAGE_MIME_TYPES }, - wrapper: :with_block_label - - .fields-row__column.fields-row__column-6 - .fields-group - = image_tag @account.header.url, class: 'fields-group__thumbnail', id: 'account_header-preview' - - if @account.header.present? - = link_to settings_profile_picture_path('header'), data: { method: :delete }, class: 'link-button link-button--destructive' do - = material_symbol 'delete' - = t('generic.delete') - - %h2= t('edit_profile.other') - - .fields-group - = f.input :bot, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.bot') - - .actions - = f.button :button, t('generic.save_changes'), type: :submit += render partial: 'settings/shared/profile_new_notice' diff --git a/app/views/settings/shared/_profile_new_notice.html.haml b/app/views/settings/shared/_profile_new_notice.html.haml new file mode 100644 index 0000000000..b4a5515a24 --- /dev/null +++ b/app/views/settings/shared/_profile_new_notice.html.haml @@ -0,0 +1,7 @@ +%aside.callout + = material_symbol 'info' + .content + .body + %p.title= t('edit_profile.redesign_title') + %p= t('edit_profile.redesign_body') + = link_to t('edit_profile.redesign_button'), '/profile/edit' diff --git a/app/views/settings/verifications/show.html.haml b/app/views/settings/verifications/show.html.haml index 6e6af16a90..0292deb604 100644 --- a/app/views/settings/verifications/show.html.haml +++ b/app/views/settings/verifications/show.html.haml @@ -5,6 +5,8 @@ %h1= t('settings.profile') = render partial: 'settings/shared/profile_navigation' += render partial: 'settings/shared/profile_new_notice' + .simple_form.form-section %h2.heading-medium= t('verification.website_verification') diff --git a/config/locales/an.yml b/config/locales/an.yml index febd52f7ec..87044b8369 100644 --- a/config/locales/an.yml +++ b/config/locales/an.yml @@ -1038,9 +1038,6 @@ an: lists: Listas mutes: Tiens en silencio storage: Almagazenamiento - featured_tags: - add_new: Anyadir nuevo - hint_html: "Qué son las etiquetas destacadas? S'amuestran de forma prominent en o tuyo perfil publico y permiten a los usuarios navegar per las tuyas publicacions publicas especificament baixo ixas etiquetas. Son una gran ferramienta pa fer un seguimiento de treballos creativos u prochectos a largo plazo." filters: contexts: account: Perfils diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 91a16c83f6..16247b4385 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -1448,8 +1448,6 @@ ar: your_appeal_pending: لقد قمت بتقديم طعن your_appeal_rejected: تم رفض طعنك edit_profile: - basic_information: معلومات أساسية - hint_html: "قم بتخصيص ما سيراه الناس في ملفك الشخصي العام وبجوار منشوراتك. من المرجح أن يتابعك أشخاص آخرون ويتفاعلون معك إن كان لديك صفحة شخصية مملوء وصورة." other: أخرى emoji_styles: auto: تلقائي @@ -1489,10 +1487,8 @@ ar: mutes: قُمتَ بكتم storage: ذاكرة التخزين featured_tags: - add_new: أضف واحدًا جديدا errors: limit: لقد قمت بالفعل بعرض الحد الأقصى من عدد الوسوم - hint_html: "ما هي الوسوم الرائجة؟ يتم عرضها بشكل بارز على ملفك الشخصي العام وتسمح للناس بتصفح منشوراتك العامة على وجه التحديد تحت تلك الوسوم. وهي أداة رائعة لتتبع الأعمال الإبداعية أو المشاريع الطويلة الأجل." filters: contexts: account: الملفات التعريفية diff --git a/config/locales/ast.yml b/config/locales/ast.yml index c8ca7a7657..0e3696f847 100644 --- a/config/locales/ast.yml +++ b/config/locales/ast.yml @@ -524,7 +524,6 @@ ast: your_appeal_pending: Unviesti una apellación your_appeal_rejected: Refugóse la to apellación edit_profile: - basic_information: Información básica other: Otres preferencies errors: '400': La solicitú qu'unviesti nun yera válida o yera incorreuta. @@ -554,8 +553,6 @@ ast: domain_blocks: Dominios bloquiaos lists: Llistes storage: Almacenamientu multimedia - featured_tags: - add_new: Amestar filters: contexts: account: Perfiles diff --git a/config/locales/az.yml b/config/locales/az.yml index ea5304929b..69478ccf39 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -170,9 +170,6 @@ az: confirm_password: Kimliyinizi doğrulamaq üçün hazırkı parolunuzu daxil edin proceed: Hesabı sil success_msg: Hesabınız uğurla silindi - edit_profile: - basic_information: Təməl məlumatlar - hint_html: "İnsanların hər kəsə açıq profilinizdə və göndərişlərinizin yanında nə göstərmək istədiyinizi özəlləşdirin. Doldurulmuş bir profilə və bir profil şəklinə sahib olduğunuz zaman digər şəxslərin sizi izləmə və sizinlə əlaqə qurma ehtimalı yüksəkdir." exports: archive_takeout: hint_html: "Göndərişlərinizin və yüklədiyiniz medianın bir arxivini tələb edə bilərsiniz. Xaricə köçürülmüş verilər, istənilən uyumlu yazılım tərəfindən oxuna bilən ActivityPub formatında olacaq. Hər 7 gündə bir dəfə arxiv tələb edə bilərsiniz." diff --git a/config/locales/be.yml b/config/locales/be.yml index 49424ed3ad..2e5fe1c8d9 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -1460,8 +1460,6 @@ be: your_appeal_pending: Вы адправілі апеляцыю your_appeal_rejected: Ваша абскарджанне было адхілена edit_profile: - basic_information: Асноўная інфармацыя - hint_html: "Наладзьце тое, што людзі будуць бачыць у вашым профілі і побач з вашымі паведамленнямі. Іншыя людзі з большай верагоднасцю будуць сачыць і ўзаемадзейнічаць з вамі, калі ў вас ёсць запоўнены профіль і фота профілю." other: Іншае redesign_body: Рэдагаванне профілю цяпер даступнае наўпрост са старонкі профілю. redesign_button: Перайсці туды @@ -1538,10 +1536,8 @@ be: mutes: Уліковыя запісы, якія вы ігнаруеце storage: Медыясховішча featured_tags: - add_new: Дадаць новы errors: limit: Вы ўжо дадалі максімальную колькасць хэштэгаў - hint_html: "Што такое выбраныя хэштэгі? Яны паказваюцца на бачным месцы вашага профілю і дазваляюць людзям праглядаць вашыя публічныя пасты з гэтымі хэштэгамі. З іхняй дапамогай вельмі зручна сачыць за творчымі ці даўгатэрміновымі праектамі." filters: contexts: account: Профілі diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 84e88b3cad..67c7d6944a 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -1361,8 +1361,6 @@ bg: your_appeal_pending: Подадохте обжалване your_appeal_rejected: Вашето обжалване е отхвърлено edit_profile: - basic_information: Основна информация - hint_html: "Персонализирайте какво хората виждат в обществения ви профил и до публикациите ви. Другите хора са по-склонни да ви последват и да взаимодействат с вас, когато имате попълнен профил и снимка на профила." other: Друго emoji_styles: auto: Автоматично @@ -1402,10 +1400,8 @@ bg: mutes: Заглушавания storage: Съхранение на мултимедия featured_tags: - add_new: Добавяне на нов errors: limit: Вече достигнахте максималния брой хаштагове - hint_html: "Изтъкнете най-важните си хаштагове на профила? Чудесен инструмент за организиране на вашите творби и дългосрочни проекти, изтъкнатите хаштагове са отчетливо видими на вашия профил и позволяват лесен достъп до вашите собствени публикации." filters: contexts: account: Профили diff --git a/config/locales/br.yml b/config/locales/br.yml index 850d7dc093..6fb6825ebc 100644 --- a/config/locales/br.yml +++ b/config/locales/br.yml @@ -584,7 +584,6 @@ br: none: Diwall suspend: Astaliñ ar gont edit_profile: - basic_information: Titouroù diavaez other: All emoji_styles: auto: Emgefreek @@ -598,8 +597,6 @@ br: bookmarks: Sinedoù csv: CSV lists: Listennoù - featured_tags: - add_new: Ouzhpennañ unan nevez filters: contexts: account: Profiloù diff --git a/config/locales/ca.yml b/config/locales/ca.yml index e0bac6c6c3..8ee8381ef7 100644 --- a/config/locales/ca.yml +++ b/config/locales/ca.yml @@ -1376,8 +1376,6 @@ ca: your_appeal_pending: Has enviat una apel·lació your_appeal_rejected: La teva apel·lació ha estat rebutjada edit_profile: - basic_information: Informació bàsica - hint_html: "Personalitza el que la gent veu en el teu perfil públic i a prop dels teus tuts.. És més probable que altres persones et segueixin i interaccionin amb tu quan tens emplenat el teu perfil i amb la teva imatge." other: Altres emoji_styles: auto: Automàtic @@ -1417,10 +1415,8 @@ ca: mutes: Persones silenciades storage: Emmagatzematge featured_tags: - add_new: Afegeix-ne una de nova errors: limit: Ja has mostrat la quantitat màxima d'etiquetes - hint_html: "Què son les etiquetes destacades? Es mostren de manera destacada en el teu perfil públic i permeten a les persones navegar per els teus tuts gràcies a aquestes etiquetes. Són una gran eina per fer un seguiment de treballs creatius o de projectes a llarg termini." filters: contexts: account: Perfils diff --git a/config/locales/ckb.yml b/config/locales/ckb.yml index 2679c7840e..9a0a69be45 100644 --- a/config/locales/ckb.yml +++ b/config/locales/ckb.yml @@ -670,9 +670,6 @@ ckb: lists: لیستەکان mutes: هەژمارە بێدەنگ کراوە storage: هەمارگەی میدیا - featured_tags: - add_new: زیادکردنی نوێ - hint_html: " هاشتاگی تایبەت چییە؟ بە شێوەیەکی دیار نیشان دەدرێت لەسەر پرۆفایلی گشتی و ڕێگە بە خەڵک دەدات بۆ گەڕان لە نووسراوە گشتیەکانت بە تایبەتی لەژێر ئەو هاشتاگە. ئامرازێکی زۆر باشن بۆ پاراستنی کاری داهێنەرانە یان پڕۆژەی درێژخایەنی ئێوە." filters: contexts: account: پرۆفایلەکان diff --git a/config/locales/co.yml b/config/locales/co.yml index 553aa92fb1..0703ae6d07 100644 --- a/config/locales/co.yml +++ b/config/locales/co.yml @@ -629,9 +629,6 @@ co: lists: Liste mutes: Piattate storage: I vostri media - featured_tags: - add_new: Aghjunghje - hint_html: "Quale sò i hashtag in mostra? Sò messi in vista nant'à u vostru prufile pubblicu è permettenu à a ghjente di vede i vostri statuti ch'annu stu hashtag. Sò una bona manere di mustrà e vostre opere creative o i prughjetti à longu termine." filters: contexts: account: Prufili diff --git a/config/locales/cs.yml b/config/locales/cs.yml index a090b663a3..728d9f87fd 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -1449,8 +1449,6 @@ cs: your_appeal_pending: Podali jste odvolání your_appeal_rejected: Vaše odvolání bylo zamítnuto edit_profile: - basic_information: Základní informace - hint_html: "Nastavte si, co lidé uvidí na vašem veřejném profilu a vedle vašich příspěvků. Ostatní lidé vás budou spíše sledovat a komunikovat s vámi, když budete mít vyplněný profil a profilový obrázek." other: Další emoji_styles: auto: Auto @@ -1490,10 +1488,8 @@ cs: mutes: Skrýváte storage: Úložiště médií featured_tags: - add_new: Přidat nový errors: limit: Již jste zvýraznili maximální počet hashtagů - hint_html: "Co jsou zvýrazněné hashtagy? Zobrazují se prominentně na vašem veřejném profilu a dovolují lidem prohlížet si vaše veřejné příspěvky konkrétně pod těmi hashtagy. Je to skvělý nástroj pro sledování kreativních děl nebo dlouhodobých projektů." filters: contexts: account: Profily diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 2bf693f5ea..333a5dd496 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -1497,8 +1497,6 @@ cy: your_appeal_pending: Rydych wedi cyflwyno apêl your_appeal_rejected: Mae eich apêl wedi'i gwrthod edit_profile: - basic_information: Gwybodaeth Sylfaenol - hint_html: "Addaswch yr hyn y mae pobl yn ei weld ar eich proffil cyhoeddus ac wrth ymyl eich postiadau. Mae pobl eraill yn fwy tebygol o'ch dilyn yn ôl a rhyngweithio â chi pan fydd gennych broffil wedi'i lenwi a llun proffil." other: Arall emoji_styles: auto: Awto @@ -1538,10 +1536,8 @@ cy: mutes: Rydych chi'n anwybyddu storage: Storfa cyfryngau featured_tags: - add_new: Ychwanegu errors: limit: Rydych chi eisoes wedi cynnwys y nifer mwyaf o hashnodau - hint_html: "Beth yw hashnodau dan sylw? Maen nhw'n cael eu dangos yn amlwg ar eich proffil cyhoeddus ac yn caniatáu i bobl bori'ch postiadau cyhoeddus yn benodol o dan yr hashnodau hynny. Maen nhw'n arf gwych ar gyfer cadw golwg ar weithiau creadigol neu brojectau tymor hir." filters: contexts: account: Proffilau diff --git a/config/locales/da.yml b/config/locales/da.yml index 7bf224e099..b26cce9c12 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -1418,8 +1418,6 @@ da: your_appeal_pending: Du har indgivet en appel your_appeal_rejected: Din appel er afvist edit_profile: - basic_information: Oplysninger - hint_html: "Tilpas, hvad folk ser på din offentlige profil og ved siden af dine indlæg. Andre personer er mere tilbøjelige til at følge dig tilbage og interagere med dig, når du har en udfyldt profil og et profilbillede." other: Andre redesign_body: Profilredigering kan nu tilgås direkte fra profilsiden. redesign_button: Gå dertil @@ -1494,10 +1492,8 @@ da: mutes: Du skjuler storage: Medielagerplads featured_tags: - add_new: Tilføj nyt errors: limit: Det maksimale antal hashtags er allerede fremhævet - hint_html: "Hvad er fremhævede hashtags? De vises i en fremtrædende position på din offentlige profil og giver folk mulighed for at gennemse dine offentlige indlæg specifikt under disse hashtags. De er et fantastisk værktøj til at holde styr på kreative værker eller langsigtede projekter." filters: contexts: account: Profiler diff --git a/config/locales/de.yml b/config/locales/de.yml index 0fbf8ecad7..8ab731356e 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -1417,8 +1417,6 @@ de: your_appeal_pending: Du hast Einspruch erhoben your_appeal_rejected: Dein Einspruch wurde abgelehnt edit_profile: - basic_information: Allgemeine Informationen - hint_html: "Bestimme, was andere auf deinem öffentlichen Profil und neben deinen Beiträgen sehen können. Wenn du ein Profilbild festlegst und dein Profil vervollständigst, werden andere eher mit dir interagieren und dir folgen." other: Andere redesign_body: Dein Profil kannst du jetzt direkt auf deiner Profilseite bearbeiten. redesign_button: Loslegen @@ -1484,10 +1482,8 @@ de: mutes: Stummgeschaltete Profile storage: Medienspeicher featured_tags: - add_new: Neuen hinzufügen errors: limit: Du hast bereits die maximale Anzahl an Hashtags erreicht - hint_html: "Präsentiere deine wichtigsten Hashtags auf deinem Profil. Vorgestellte Hashtags verschaffen einen Überblick über deine kreativen Werke und langfristigen Projekte. Sie werden gut sichtbar auf deinem Profil angezeigt und ermöglichen einen schnellen Zugriff auf deine eigenen Beiträge." filters: contexts: account: Profile diff --git a/config/locales/el.yml b/config/locales/el.yml index 193b95b20a..66fddceb9c 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -1418,8 +1418,6 @@ el: your_appeal_pending: Υπέβαλλες έφεση your_appeal_rejected: Η έφεση σου απορρίφθηκε edit_profile: - basic_information: Βασικές πληροφορίες - hint_html: "Προσάρμοσε τί βλέπουν άτομα στο δημόσιο προφίλ σου και δίπλα στις αναρτήσεις σου. Είναι πιο πιθανό άλλα άτομα να σε ακολουθήσουν πίσω και να αλληλεπιδράσουν μαζί σου αν έχεις ολοκληρωμένο προφίλ και εικόνα προφίλ." other: Άλλο redesign_body: Η επεξεργασία προφίλ μπορεί τώρα να προσεγγιστεί απευθείας από τη σελίδα του προφίλ. redesign_button: Πηγαίνετε εκεί @@ -1494,10 +1492,8 @@ el: mutes: Έχεις σε σίγαση storage: Χώρος πολυμέσων featured_tags: - add_new: Προσθήκη νέας errors: limit: Έχεις ήδη αναδείξει το μέγιστο αριθμό ετικετών - hint_html: "Ανέδειξε στο προφίλ σου τις πιο σημαντικές ετικέτες σου. Οι αναδεδειγμένες ετικέτες προβάλονται εμφανώς στο προφίλ σου επιτρέποντας γρήγορη πρόσβαση στις αναρτήσεις σου. Είναι ένας ωραίος τρόπος να παρακολουθείς την πορεία των δημιουργικών εργασιών σου ή ενός μακροπρόθεσμου έργου σου." filters: contexts: account: Προφίλ diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml index 1e970f3bc6..d85a2a2f28 100644 --- a/config/locales/en-GB.yml +++ b/config/locales/en-GB.yml @@ -1411,8 +1411,6 @@ en-GB: your_appeal_pending: You have submitted an appeal your_appeal_rejected: Your appeal has been rejected edit_profile: - basic_information: Basic information - hint_html: "Customise what people see on your public profile and next to your posts. Other people are more likely to follow you back and interact with you when you have a filled out profile and a profile picture." other: Other emoji_styles: auto: Auto @@ -1452,10 +1450,8 @@ en-GB: mutes: You mute storage: Media storage featured_tags: - add_new: Add new errors: limit: You have already featured the maximum number of hashtags - hint_html: "Feature your most important hashtags on your profile. A great tool for keeping track of your creative works and long-term projects, featured hashtags are displayed prominently on your profile and allow quick access to your own posts." filters: contexts: account: Profiles diff --git a/config/locales/en.yml b/config/locales/en.yml index 883bf18e7a..2c92862102 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -1418,8 +1418,6 @@ en: your_appeal_pending: You have submitted an appeal your_appeal_rejected: Your appeal has been rejected edit_profile: - basic_information: Basic information - hint_html: "Customize what people see on your public profile and next to your posts. Other people are more likely to follow you back and interact with you when you have a filled out profile and a profile picture." other: Other redesign_body: Profile editing can now be accessed directly from the profile page. redesign_button: Go there @@ -1494,10 +1492,8 @@ en: mutes: You mute storage: Media storage featured_tags: - add_new: Add new errors: limit: You have already featured the maximum number of hashtags - hint_html: "Feature your most important hashtags on your profile. A great tool for keeping track of your creative works and long-term projects, featured hashtags are displayed prominently on your profile and allow quick access to your own posts." filters: contexts: account: Profiles diff --git a/config/locales/eo.yml b/config/locales/eo.yml index 195b95f07e..7fb13611d2 100644 --- a/config/locales/eo.yml +++ b/config/locales/eo.yml @@ -1357,8 +1357,6 @@ eo: your_appeal_pending: Vi sendis apelacion your_appeal_rejected: Via apelacio malakceptitas edit_profile: - basic_information: Baza informo - hint_html: "Personigi, kion homoj vidi en via publika profilo kaj apud viaj afiŝoj. Aliaj homoj estas pli probable resekvi vin kaj interagi kun vi se vi havus finigitan profilon kaj profilan foton." other: Alia emoji_styles: auto: Aŭtomata @@ -1400,10 +1398,8 @@ eo: mutes: Vi silentigas storage: Aŭdovidaĵa konservado featured_tags: - add_new: Aldoni novan errors: limit: Vi jam elstarigis la maksimuman kvanton da kradvortoj - hint_html: "Elstarigu viajn plej gravajn kradvortojn en via profilo. Bona ilo por sekvi viaj kreaĵoj aŭ longdaŭraj projektoj, elstarigitaj kradvortoj bone videblas en via publika profilo kaj ebligas rapidan aliron al viaj propraj afiŝoj." filters: contexts: account: Profiloj diff --git a/config/locales/es-AR.yml b/config/locales/es-AR.yml index d027f882ad..2b4900848f 100644 --- a/config/locales/es-AR.yml +++ b/config/locales/es-AR.yml @@ -1418,8 +1418,6 @@ es-AR: your_appeal_pending: Enviaste una apelación your_appeal_rejected: Se rechazó tu apelación edit_profile: - basic_information: Información básica - hint_html: "Personalizá lo que la gente ve en tu perfil público y junto a tus publicaciones. Es más probable que otras personas te sigan e interactúen con vos cuando tengas un perfil completo y una foto de perfil." other: Otros redesign_body: Ahora podés acceder a la edición del perfil desde la propia página de perfil. redesign_button: Ir allí @@ -1494,10 +1492,8 @@ es-AR: mutes: Cuentas que silenciaste storage: Almacenamiento de medios featured_tags: - add_new: Agregar nueva errors: limit: Ya estableciste el número máximo de etiquetas - hint_html: "Destacá tus etiquetas más importantes en tu perfil. Una gran herramienta para realizar un seguimiento de tus obras creativas y de tus proyectos a largo plazo. Las etiquetas destacadas se muestran de tal forma en tu perfil y permiten un acceso rápido a tus propios mensajes." filters: contexts: account: Perfiles diff --git a/config/locales/es-MX.yml b/config/locales/es-MX.yml index 4021f36727..5fe02d34f4 100644 --- a/config/locales/es-MX.yml +++ b/config/locales/es-MX.yml @@ -1418,8 +1418,6 @@ es-MX: your_appeal_pending: Has enviado una apelación your_appeal_rejected: Tu apelación ha sido rechazada edit_profile: - basic_information: Información básica - hint_html: "Personaliza lo que la gente ve en tu perfil público junto a tus publicaciones. Es más probable que otras personas te sigan e interactúen contigo cuando completes tu perfil y agregues una foto." other: Otro redesign_body: Ahora puede acceder a la edición del perfil desde la propia página del perfil. redesign_button: Llévame allí @@ -1494,10 +1492,8 @@ es-MX: mutes: Tienes en silencio storage: Almacenamiento featured_tags: - add_new: Añadir nueva errors: limit: Ya has alcanzado la cantidad máxima de etiquetas - hint_html: "Destaca tus etiquetas más importantes en tu perfil. Una herramienta fantástica para llevar un registro de tus trabajos creativos y proyectos a largo plazo; las etiquetas destacadas aparecen en un lugar visible de tu perfil y te permiten acceder rápidamente a tus propias publicaciones." filters: contexts: account: Perfiles diff --git a/config/locales/es.yml b/config/locales/es.yml index 52746858b2..eef3447172 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -1418,8 +1418,6 @@ es: your_appeal_pending: Has enviado una apelación your_appeal_rejected: Tu apelación ha sido rechazada edit_profile: - basic_information: Información básica - hint_html: "Personaliza lo que la gente ve en tu perfil público junto a tus publicaciones. Es más probable que otras personas te sigan e interactúen contigo cuando completas tu perfil y foto." other: Otros redesign_body: Ahora puedes acceder a la edición del perfil desde la propia página de perfil. redesign_button: Llévame allí @@ -1494,10 +1492,8 @@ es: mutes: Tienes en silencio storage: Almacenamiento featured_tags: - add_new: Añadir nuevo errors: limit: Ya has alcanzado la cantidad máxima de etiquetas - hint_html: "¿Qué son las etiquetas destacadas? Se muestran de forma prominente en tu perfil público y permiten a los usuarios navegar por tus publicaciones públicas específicamente bajo esas etiquetas. Son una gran herramienta para hacer un seguimiento de trabajos creativos o proyectos a largo plazo." filters: contexts: account: Perfiles diff --git a/config/locales/et.yml b/config/locales/et.yml index 8a6e8b39bc..28c5565388 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -1396,8 +1396,6 @@ et: your_appeal_pending: Vaidlustus on esitatud your_appeal_rejected: Vaidlustus on tagasi lükatud edit_profile: - basic_information: Põhiinfo - hint_html: "Kohanda, mida inimesed näevad su avalikul profiilil ja postituste kõrval. Inimesed alustavad tõenäolisemalt sinu jälgimist ja interakteeruvad sinuga, kui sul on täidetud profiil ja profiilipilt." other: Muu emoji_styles: auto: Automaatne @@ -1437,10 +1435,8 @@ et: mutes: Oled summutanud storage: Meedia hoidla featured_tags: - add_new: Lisa uus errors: limit: Oled jõudnud teemaviidete lubatud maksimumarvuni - hint_html: "Mis on esiletõstetud teemaviited? Neid teemaviiteid näidatakse su avalikul profiilil esiletõstetult ning need aitavad teistel leida postitusi, millel on selline teemaviide. See on hea viis, kuidas hoida järge loovtöödel või pikaajalistel projektidel." filters: contexts: account: Profiilid diff --git a/config/locales/eu.yml b/config/locales/eu.yml index 85b6eb08f5..4d8398b08a 100644 --- a/config/locales/eu.yml +++ b/config/locales/eu.yml @@ -1336,8 +1336,6 @@ eu: your_appeal_pending: Apelazio bat bidali duzu your_appeal_rejected: Zure apelazioa baztertu da edit_profile: - basic_information: Oinarrizko informazioa - hint_html: "Pertsonalizatu jendeak zer ikusi dezakeen zure profil publikoan eta zure bidalketen baitan. Segur aski, jende gehiagok jarraituko dizu eta interakzio gehiago izango dituzu profila osatuta baduzu, profil irudia eta guzti." other: Bestelakoak emoji_styles: auto: Automatikoa @@ -1377,10 +1375,8 @@ eu: mutes: Zuk mututukoak storage: Multimedia biltegiratzea featured_tags: - add_new: Gehitu berria errors: limit: Gehienezko traola kopurua erakutsi duzu jada - hint_html: "Zer dira nabarmendutako traolak? Zure profileko toki nabarmendu batean agertzen dira eta jendeari traola haue dituzten bidalketa publikoak arakatzea ahalbidetzen diote. Sormen-lanak edo epe luzerako proiektuak jarraitzeko primerakoak dira." filters: contexts: account: Profilak diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 50e5a8576f..f68e549ea8 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -1392,8 +1392,6 @@ fa: your_appeal_pending: شما یک درخواست تجدیدنظر فرستادید your_appeal_rejected: درخواست تجدیدنظرتان رد شد edit_profile: - basic_information: اطلاعات پایه - hint_html: "شخصی‌سازی آن چه مردم روی نمایهٔ عمومیتان و کنار فرسته‌هایتان می‌بینند. هنگامی که نمایه‌ای کامل و یک تصویر نمایه داشته باشید،‌ احتمال پی‌گیری متقابل و تعامل با شما بیش‌تر است." other: سایر emoji_styles: auto: خودکار @@ -1433,10 +1431,8 @@ fa: mutes: حساب‌های بی‌صداشده storage: تصویرهای ذخیره‌شده featured_tags: - add_new: افزودن تازه errors: limit: شما بیشترین تعداد مجاز برچسب‌ها را دارید - hint_html: "برچسب‌های برگزیده چیستند؟ این برچسب‌ها به طور واضحی روی نمایهٔ عمومیتان نمایش یافته می‌گذارد افراد فرسته‌های عمومیتان زیرشان را مرور کنند. ابزاری عالی برای دنبال کردن آثار خلاقانه یا پروژه‌های بلندمدت است." filters: contexts: account: نمایه‌ها diff --git a/config/locales/fi.yml b/config/locales/fi.yml index bac33f609e..72d82b37fe 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -1418,8 +1418,6 @@ fi: your_appeal_pending: Olet lähettänyt valituksen your_appeal_rejected: Valituksesi on hylätty edit_profile: - basic_information: Perustiedot - hint_html: "Mukauta, mitä ihmiset näkevät julkisessa profiilissasi ja julkaisujesi vieressä. Sinua seurataan takaisin ja kanssasi ollaan vuorovaikutuksessa todennäköisemmin, kun sinulla on täytetty profiili ja profiilikuva." other: Muut redesign_body: Profiilia pääsee muokkaamaan nyt suoraan profiilisivulta. redesign_button: Siirry sinne @@ -1494,10 +1492,8 @@ fi: mutes: Mykistykset storage: Mediatiedostot featured_tags: - add_new: Lisää uusi errors: limit: Esittelet jo aihetunnisteiden enimmäismäärää - hint_html: "Esittele tärkeimpiä aihetunnisteitasi profiilissasi. Erinomainen työkalu, jolla pidät kirjaa luovista teoksistasi ja pitkäaikaisista projekteistasi. Esittelemäsi aihetunnisteet ovat näyttävällä paikalla profiilissasi ja mahdollistavat nopean pääsyn julkaisuihisi." filters: contexts: account: Profiilit diff --git a/config/locales/fo.yml b/config/locales/fo.yml index 057afbec78..9493ffbc07 100644 --- a/config/locales/fo.yml +++ b/config/locales/fo.yml @@ -1411,8 +1411,6 @@ fo: your_appeal_pending: Tú hevur kært your_appeal_rejected: Kæra tín er vrakað edit_profile: - basic_information: Grundleggjandi upplýsingar - hint_html: "Tillaga tað, sum fólk síggja á tínum almenna vanga og við síðna av tínum postum. Sannlíkindini fyri, at onnur fylgja tær og virka saman við tær eru størri, tá tú hevur fylt út vangan og eina vangamynd." other: Onnur emoji_styles: auto: Sjálvvirkandi @@ -1452,10 +1450,8 @@ fo: mutes: Tú doyvir storage: Miðlagoymsla featured_tags: - add_new: Legg afturat errors: limit: Tú hevur longu varpað loyvda talið av frámerkjum - hint_html: "Hvat eru varpaði frámerki? Tey verða víst sjónliga á almenna vanga tínum og loyva fólki at kaga gjøgnum tínar almennu postar, sum hava tey frámerkini. Tey eru serliga vælegnaði at fylgja við skapandi arbeiði ella langtíðarverkætlanum." filters: contexts: account: Vangar diff --git a/config/locales/fr-CA.yml b/config/locales/fr-CA.yml index af713eab7a..ca1742bc50 100644 --- a/config/locales/fr-CA.yml +++ b/config/locales/fr-CA.yml @@ -1418,8 +1418,6 @@ fr-CA: your_appeal_pending: Vous avez soumis un appel your_appeal_rejected: Votre appel a été rejeté edit_profile: - basic_information: Informations de base - hint_html: "Personnalisez ce que les gens voient sur votre profil public et à côté de vos messages. Les autres personnes seront plus susceptibles de vous suivre et d’interagir avec vous lorsque vous avez un profil complet et une photo." other: Autre redesign_body: La modification du profil est maintenant accessible directement depuis la page de profil. redesign_button: Accéder @@ -1494,10 +1492,8 @@ fr-CA: mutes: Vous masquez storage: Médias stockés featured_tags: - add_new: Ajouter un nouveau hashtag errors: limit: Vous avez déjà mis en avant le nombre maximum de hashtags - hint_html: "Que sont les hashtags mis en avant ? Ils sont affichés en évidence sur votre profil public et permettent aux gens de parcourir vos messages publics qui utilisent ces hashtags. Ils sont un excellent outil pour garder la trace d’activités créatrices ou de projets de long terme." filters: contexts: account: Profils diff --git a/config/locales/fr.yml b/config/locales/fr.yml index acaf914a55..d9ccfed3fa 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -1418,8 +1418,6 @@ fr: your_appeal_pending: Vous avez soumis un appel your_appeal_rejected: Votre appel a été rejeté edit_profile: - basic_information: Informations de base - hint_html: "Personnalisez ce que les gens voient sur votre profil public et à côté de vos messages. Les autres personnes seront plus susceptibles de vous suivre et d’interagir avec vous lorsque vous avez un profil complet et une photo." other: Autre redesign_body: La modification du profil est maintenant accessible directement depuis la page de profil. redesign_button: Accéder @@ -1494,10 +1492,8 @@ fr: mutes: Vous masquez storage: Médias stockés featured_tags: - add_new: Ajouter un nouveau hashtag errors: limit: Vous avez déjà mis en avant le nombre maximum de hashtags - hint_html: "Mettez en évidence vos hashtags les plus importants sur votre profil. Un outil idéal pour suivre vos travaux créatifs et vos projets à long terme, les hashtags mis en avant sont affichés bien en évidence sur votre profil et permettent un accès rapide à vos propres messages." filters: contexts: account: Profils diff --git a/config/locales/fy.yml b/config/locales/fy.yml index 55381b4ba6..6a1a1e719a 100644 --- a/config/locales/fy.yml +++ b/config/locales/fy.yml @@ -1364,8 +1364,6 @@ fy: your_appeal_pending: Jo hawwe in beswier yntsjinne your_appeal_rejected: Jo beswier is ôfwêzen edit_profile: - basic_information: Algemiene ynformaasje - hint_html: "Pas oan wat minsken op jo iepenbiere profyl en njonken jo berjochten sjogge. Oare minsken sille jo earder folgje en mei jo kommunisearje wannear’t jo profyl ynfolle is en jo in profylfoto hawwe." other: Oars emoji_styles: auto: Automatysk @@ -1405,10 +1403,8 @@ fy: mutes: Jo negearje storage: Mediaûnthâld featured_tags: - add_new: Nije tafoegje errors: limit: Jo hawwe al it maksimaal tal hashtags útljochte - hint_html: "Wat binne útljochte hashtags? Dizze wurde prominint op jo iepenbiere profyl toand en stelt minsken yn steat om jo iepenbiere berjochten per hashtag te besjen. It is in goed helpmiddel om kreative wurksumheden of langetermynprojekten by te hâlden." filters: contexts: account: Profilen diff --git a/config/locales/ga.yml b/config/locales/ga.yml index 9c2c012543..f530105c4b 100644 --- a/config/locales/ga.yml +++ b/config/locales/ga.yml @@ -1483,8 +1483,6 @@ ga: your_appeal_pending: Chuir tú achomharc isteach your_appeal_rejected: Diúltaíodh do d'achomharc edit_profile: - basic_information: Eolas bunúsach - hint_html: "Saincheap a bhfeiceann daoine ar do phróifíl phoiblí agus in aice le do phostálacha. Is dóichí go leanfaidh daoine eile ar ais tú agus go n-idirghníomhóidh siad leat nuair a bhíonn próifíl líonta agus pictiúr próifíle agat." other: Eile redesign_body: Is féidir rochtain a fháil ar eagarthóireacht próifíle go díreach ón leathanach próifíle anois. redesign_button: Téigh ann @@ -1562,10 +1560,8 @@ ga: mutes: Balbhaíonn tú storage: Stóráil meáin featured_tags: - add_new: Cuir nua leis errors: limit: Tá uaslíon na hashtags le feiceáil agat cheana féin - hint_html: "Áirigh na haischlibeanna is tábhachtaí ar do phróifíl. Uirlis iontach chun súil a choinneáil ar do shaothair chruthaitheacha agus do thionscadail fhadtéarmacha, taispeántar haischlibeanna faoi thrácht in áit fheiceálach ar do phróifíl agus ceadaíonn siad rochtain thapa ar do phostálacha féin." filters: contexts: account: Próifílí diff --git a/config/locales/gd.yml b/config/locales/gd.yml index b1edcdbd8b..b1c3fdfabb 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -1460,8 +1460,6 @@ gd: your_appeal_pending: Chuir thu ath-thagradh a-null your_appeal_rejected: Chaidh an t-ath-thagradh agad a dhiùltadh edit_profile: - basic_information: Fiosrachadh bunasach - hint_html: "Gnàthaich na chithear air a’ phròifil phoblach agad is ri taobh nam postaichean agad. Bidh càch nas buailtiche do leantainn agus conaltradh leat nuair a bhios tu air a’ phròifil agad a lìonadh agus dealbh rithe." other: Eile redesign_body: "’S urrainn dhut a’ phròifil agad a dheasachadh air duilleag na pròifile fhèin." redesign_button: Tadhail air @@ -1532,10 +1530,8 @@ gd: mutes: Tha thu a’ mùchadh storage: Stòras mheadhanan featured_tags: - add_new: Cuir fear ùr ris errors: limit: Bhrosnaich thu an uiread as motha de thagaichean hais mu thràth - hint_html: "Brosnaich na tagaichean hais as cudromaiche agad air a’ phròifil agad. ’S e deagh-acainn a th’ annta airson sùil a chumail air an obair chruthachail no na pròiseactan fada agad on a thèid na tagaichean hais brosnaichte a shealltainn gu follaiseach air a’ phròifil agad agus ’s urrainnear na postaichean agad inntrigeadh gu luath leotha." filters: contexts: account: Pròifilean diff --git a/config/locales/gl.yml b/config/locales/gl.yml index c868b5a09b..7e24896d8f 100644 --- a/config/locales/gl.yml +++ b/config/locales/gl.yml @@ -1418,8 +1418,6 @@ gl: your_appeal_pending: Enviaches unha apelación your_appeal_rejected: A apelación foi rexeitada edit_profile: - basic_information: Información básica - hint_html: "Personaliza o que van ver no teu perfil público e ao lado das túas publicacións. As outras persoas estarán máis animadas a seguirte e interactuar contigo se engades algún dato sobre ti así como unha imaxe de perfil." other: Outros redesign_body: Agora podes acceder á edición do perfil directamente desde a páxina do perfil. redesign_button: Ir á edición @@ -1494,10 +1492,8 @@ gl: mutes: Silenciadas storage: Almacenamento de multimedia featured_tags: - add_new: Engadir novo errors: limit: Xa sinalaches o número máximo de cancelos permitido - hint_html: "¿Qué son os cancelos destacados? Móstranse destacados no teu perfil público e permítenlle a outras persoas ver os teus toots públicos nos que os utilizaches. Son unha ferramenta moi útil para facer seguimento de traballos creativos e proxectos a longo prazo." filters: contexts: account: Perfís diff --git a/config/locales/he.yml b/config/locales/he.yml index ee37e56758..c987f8953d 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -1460,8 +1460,6 @@ he: your_appeal_pending: הגשת ערעור your_appeal_rejected: ערעורך נדחה edit_profile: - basic_information: מידע בסיסי - hint_html: "התאמה אישית של מה שיראו אחרים בפרופיל הציבורי שלך וליד הודעותיך. אחרים עשויים יותר להחזיר עוקב וליצור אתך שיחה אם הפרופיל והתמונה יהיו מלאים." other: אחר redesign_body: ניתן להגיע לעריכת הפרופיל ישירות מעמוד הפרופיל. redesign_button: לך לשם @@ -1538,10 +1536,8 @@ he: mutes: רשימת השתקות storage: אחסון מדיה featured_tags: - add_new: הוספת חדש errors: limit: הצגת כבר את המספר המירבי של תגיות נבחרות - hint_html: "מהן תגיות נבחרות? הן מוצגות במובלט בפרופיל הפומבי שלך ומאפשר לאנשים לעיין בהודעות הפומביות שלך המסומנות בתגיות אלה. הן כלי אדיר למעקב אחר עבודות יצירה ופרוייקטים לטווח ארוך." filters: contexts: account: פרופילים diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 09e904525d..ef00483475 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -100,8 +100,6 @@ hr: less_than_x_seconds: Upravo sada over_x_years: "%{count}god" x_months: "%{count}mj" - edit_profile: - basic_information: Osnovne informacije exports: archive_takeout: date: Datum @@ -111,8 +109,6 @@ hr: blocks: Blokirali ste lists: Liste storage: Pohrana medijskih sadržaja - featured_tags: - add_new: Dodaj novi filters: contexts: notifications: Obavijesti diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 56e533c67d..0fbbbe90b8 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -1418,8 +1418,6 @@ hu: your_appeal_pending: Beküldtél egy fellebbezést your_appeal_rejected: A fellebbezésedet visszautasították edit_profile: - basic_information: Általános információk - hint_html: "Tedd egyedivé, mi látnak mások a profilodon és a bejegyzéseid mellett. Mások nagyobb eséllyel követnek vissza és lépnek veled kapcsolatba, ha van kitöltött profilod és profilképed." other: Egyéb redesign_body: A profil szerkesztése most már közvetlenül elérhető a profiloldalon. redesign_button: Ugrás oda @@ -1494,10 +1492,8 @@ hu: mutes: Némítás storage: Médiatároló featured_tags: - add_new: Új hozzáadása errors: limit: Elérted a maximálisan kitűzhető hashtagek számát - hint_html: "Mik a kiemelt hashtagek? Ezek állandóan megjelennek a nyilvános profilodon és lehetővé teszik, hogy mások kifejezetten az ezekhez tartozó bejegyzéseidet böngésszék. Jó eszköz ez kreatív munkák vagy hosszútávú projektek nyomonkövetésére." filters: contexts: account: Profil diff --git a/config/locales/hy.yml b/config/locales/hy.yml index 5e4b9a8708..1f869c6672 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -534,8 +534,6 @@ hy: lists: Ցանկեր mutes: Լռեցրել ես storage: Մեդիա պահոց - featured_tags: - add_new: Աւելացնել նորը filters: contexts: account: Պրոֆիլներ diff --git a/config/locales/ia.yml b/config/locales/ia.yml index babee4f9aa..c5afddfab0 100644 --- a/config/locales/ia.yml +++ b/config/locales/ia.yml @@ -1382,8 +1382,6 @@ ia: your_appeal_pending: Tu ha submittite un appello your_appeal_rejected: Tu appello ha essite rejectate edit_profile: - basic_information: Information basic - hint_html: "Personalisa lo que le personas vide sur tu profilo public e presso tu messages. Il es plus probabile que altere personas te seque e interage con te quando tu ha un profilo complete e un photo." other: Alteres emoji_styles: auto: Automatic @@ -1423,10 +1421,8 @@ ia: mutes: Tu ha silentiate storage: Immagazinage multimedial featured_tags: - add_new: Adder nove errors: limit: Tu ha jam mittite in evidentia le maxime numero de hashtags - hint_html: "Monstra tu plus importante hashtags sur tu profilo. Un excellente instrumento pro tener tracia de tu labores creative e projectos de longe termino, le hashtags que tu mitte in evidentia appare prominentemente sur tu profilo e permitte le accesso rapide a tu proprie messages." filters: contexts: account: Profilos diff --git a/config/locales/id.yml b/config/locales/id.yml index 8d5318607f..57dcfb360c 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -1022,9 +1022,6 @@ id: lists: Daftar mutes: Anda bisukan storage: Penyimpanan media - featured_tags: - add_new: Tambah baru - hint_html: "Apa itu tagar yang diunggulkan? Mereka ditampilkan secara mencolok di profil publik Anda dan mengizinkan orang-orang untuk menjelajahi kiriman publik khususnya yang ada di bawah tagar tersebut. Mereka adalah alat yang bagus untuk melacak pekerjaan kreatif atau proyek jangka panjang." filters: contexts: account: Profil diff --git a/config/locales/ie.yml b/config/locales/ie.yml index b28cbbb70b..2ffc1f7294 100644 --- a/config/locales/ie.yml +++ b/config/locales/ie.yml @@ -1141,8 +1141,6 @@ ie: your_appeal_pending: Tu ha fat un apelle your_appeal_rejected: Tui apelle ha esset rejectet edit_profile: - basic_information: Basic information - hint_html: "Customisa ti quel gente vide sur tui public profil e apu tui postas. Altri persones es plu probabil sequer te e interacter con te si tu have un detalliat profil e un profil-image." other: Altri errors: '400': Li demande quel tu inviat esset ínvalid o misformat. @@ -1178,10 +1176,8 @@ ie: mutes: Tu silentia storage: Inmagasination de medie featured_tags: - add_new: Adjunter un nov errors: limit: Tu ja ha pinglat li maxim númere de hashtags - hint_html: "Pinglar tui max important hashtags sur tui profil. Un bonissim maniere de mantener un registre de tui ovres e projectes, pinglat hashtags es monstrat prominentmen sur tui profil e permisse rapid accesse a tui propri postas." filters: contexts: account: Profiles diff --git a/config/locales/io.yml b/config/locales/io.yml index 85aa06234a..3edfc5c011 100644 --- a/config/locales/io.yml +++ b/config/locales/io.yml @@ -1275,8 +1275,6 @@ io: your_appeal_pending: Vu sendis apelo your_appeal_rejected: Vua apelo refuzesis edit_profile: - basic_information: Fundamentala informo - hint_html: "Personesigez quon personi vidas sur vua publika profilo e apud vua afishi.." other: Altra errors: '400': Demando quon vu sendis esas nevalida o malstrukturala. @@ -1311,10 +1309,8 @@ io: mutes: Vu silencigesas storage: Audvidajkonservo featured_tags: - add_new: Adjuntar novo errors: limit: Vu ja pinglizis la maxima nombro de hastagi - hint_html: "Quo esas estelita hashtagi? Ol montresas eminente che vua publika profilo e povigas personi vidar vua publika posti partikulare kun ta hashtagi. Oli esas bona utensilo por jeretar kreiva agaji e longa projetaji." filters: contexts: account: Profili diff --git a/config/locales/is.yml b/config/locales/is.yml index 50d0a213f3..ffab72f4cb 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -1422,8 +1422,6 @@ is: your_appeal_pending: Þú hefur sent inn áfrýjun your_appeal_rejected: Áfrýjun þinni hefur verið hafnað edit_profile: - basic_information: Grunnupplýsingar - hint_html: "Sérsníddu hvað fólk sér á opinbera notandasniðinu þínu og næst færslunum þínum. Annað fólk er líklegra til að fylgjast með þér og eiga í samskiptum við þig ef þú fyllir út notandasniðið og setur auðkennismynd." other: Annað redesign_body: Núna er hægt að breyta notandasíðunni sinni beint á þeirri síðu. redesign_button: Fara þangað @@ -1498,10 +1496,8 @@ is: mutes: Þú þaggar storage: Geymsla myndefnis featured_tags: - add_new: Bæta við nýju errors: limit: Þú hefur þegar gefið hámarksfjölda myllumerkja aukið vægi - hint_html: "Hvað eru myllumerki með aukið vægi? Þau eru birt áberandi á opinbera notandasniðinu þínu og gera fólki kleift að fletta í gegnum opinberu færslurnar þínar sérstaklega undir þessum myllumerkjum. Þau eru frábær aðferð við að halda utan um skapandi vinnu eða langtíma verkefni." filters: contexts: account: Notandasnið diff --git a/config/locales/it.yml b/config/locales/it.yml index 709e9758e3..b9c26de4f5 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -1418,8 +1418,6 @@ it: your_appeal_pending: Hai presentato un appello your_appeal_rejected: Il tuo appello è stato respinto edit_profile: - basic_information: Informazioni di base - hint_html: "Personalizza ciò che le persone vedono sul tuo profilo pubblico e accanto ai tuoi post. È più probabile che altre persone ti seguano e interagiscano con te quando hai un profilo compilato e un'immagine del profilo." other: Altro redesign_body: Ora è possibile modificare il profilo direttamente dalla pagina del profilo stesso. redesign_button: Vai lì @@ -1494,10 +1492,8 @@ it: mutes: Stai silenziando storage: Archiviazione media featured_tags: - add_new: Aggiungi nuovo errors: limit: Hai già messo in evidenza il numero massimo di hashtag - hint_html: "Cosa sono gli hashtag in evidenza? Sono visualizzati in evidenza sul tuo profilo pubblico e permettono alle persone di visualizzare i tuoi post pubblici marcati con questi hashtag. Sono un grande strumento per tenere traccia di opere creative o progetti a lungo termine." filters: contexts: account: Profili diff --git a/config/locales/ja.yml b/config/locales/ja.yml index b11748cca2..049a7dd53e 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -1350,8 +1350,6 @@ ja: your_appeal_pending: 申し立てを送信しました your_appeal_rejected: 申し立ては拒否されました edit_profile: - basic_information: 基本情報 - hint_html: "アカウントのトップページや投稿の隣に表示される公開情報です。プロフィールとアイコンを設定することで、ほかのユーザーは親しみやすく、またフォローしやすくなります。" other: その他 emoji_styles: auto: オート @@ -1391,10 +1389,8 @@ ja: mutes: ミュート storage: メディア featured_tags: - add_new: 追加 errors: limit: すでに注目のハッシュタグの上限数に達しています - hint_html: "注目のハッシュタグとは? プロフィールページに目立つ形で表示され、そのハッシュタグのついたあなたの公開投稿だけを抽出して閲覧できるようにします。クリエイティブな仕事や長期的なプロジェクトを追うのに優れた機能です。" filters: contexts: account: プロフィール diff --git a/config/locales/kab.yml b/config/locales/kab.yml index 93dc72865c..2a2c686884 100644 --- a/config/locales/kab.yml +++ b/config/locales/kab.yml @@ -677,8 +677,6 @@ kab: delete_statuses: Tukksa n tsuffeɣt none: Ɣur-wat edit_profile: - basic_information: Talɣut tamatut - hint_html: "Mudd udem i wayen ttwalin medden deg umaɣnu-inek azayez ɣer yidis n yiznan-ik. Imdanen niḍen zemren ad k-ḍefren yernu ad gen assaɣ yid-k mi ara tesɛuḍ amaɣnu yeccuṛen ed tugna n umaɣnu." other: Ayen nniḍen emoji_styles: auto: Awurman @@ -699,8 +697,6 @@ kab: csv: CSV lists: Tibdarin mutes: Wid tesgugmeḍ - featured_tags: - add_new: Rnu amaynut filters: contexts: account: Imeɣna diff --git a/config/locales/kk.yml b/config/locales/kk.yml index d478ab031e..529c2afdd9 100644 --- a/config/locales/kk.yml +++ b/config/locales/kk.yml @@ -411,9 +411,6 @@ kk: lists: Тізімдер mutes: Үнсіздер storage: Медиа жинақ - featured_tags: - add_new: Жаңасын қосу - hint_html: " Ерекшеліктері бар хэштегтер дегеніміз не? Олар жалпыға қол жетімді профильде көрсетіледі және адамдарға сіздің жалпы хабарламаларыңызды сол хэштегтердің астына қарауға мүмкіндік береді. Олар шығармашылық жұмыстарды немесе ұзақ мерзімді жобаларды бақылаудың тамаша құралы." filters: contexts: home: Ішкі желі diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 179956c433..616b6e7a64 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -1376,8 +1376,6 @@ ko: your_appeal_pending: 소명을 제출했습니다 your_appeal_rejected: 소명이 기각되었습니다 edit_profile: - basic_information: 기본 정보 - hint_html: "사람들이 공개 프로필을 보고서 게시물을 볼 때를 위한 프로필을 꾸밉니다. 프로필과 프로필 사진을 채우면 다른 사람들이 나를 팔로우하고 나와 교류할 기회가 더 많아집니다." other: 기타 emoji_styles: auto: 자동 @@ -1417,10 +1415,8 @@ ko: mutes: 뮤트 storage: 미디어 featured_tags: - add_new: 추가 errors: limit: 추천 해시태그 최대 개수를 초과합니다 - hint_html: "내 가장 중요한 해시태그들을 프로필에서 추천하세요. 내 창작물이나 오래 걸리는 프로젝트를 따라가기 위한 도구이며 추천 해시태그는 내 프로필에 잘 보이게 표시되고 내 게시물에 대한 빠른 접근을 가능하게 합니다." filters: contexts: account: 프로필 diff --git a/config/locales/ku.yml b/config/locales/ku.yml index 516f3a4270..2ac982f1d3 100644 --- a/config/locales/ku.yml +++ b/config/locales/ku.yml @@ -1036,9 +1036,6 @@ ku: lists: Rêzok mutes: Te bêdeng kir storage: Bîrdanaka medyayê - featured_tags: - add_new: Yeka nû tevlî bike - hint_html: " Hashtagên destnîşankirî çi ne? Ew bi eşkere li ser profîla te ya gelemperî têne xuyakirin û dihêlin ku mirov bi taybetî di binê wan hashtagan de li şandiyên te yên gelemperî bigere. Ew ji bo şopandina karên afirîner an projeyên demdirêj amûrek girîng in." filters: contexts: account: Profîl diff --git a/config/locales/lad.yml b/config/locales/lad.yml index 04a09327c0..70a2872f52 100644 --- a/config/locales/lad.yml +++ b/config/locales/lad.yml @@ -1304,8 +1304,6 @@ lad: your_appeal_pending: Tienes enviado una apelasyon your_appeal_rejected: Tu apelasyon fue refuzada edit_profile: - basic_information: Enformasyon bazika - hint_html: "Personaliza lo ke la djente ve en tu profil publiko i kon tus publikasyones. Es mas probavle ke otras personas te sigan i enteraktuen kontigo kuando kompletas tu profil i foto." other: Otros emoji_styles: auto: Otomatiko @@ -1345,10 +1343,8 @@ lad: mutes: Silensias storage: Magazinaje de multimedia featured_tags: - add_new: Adjusta muevo errors: limit: Tienes alkansado el karar maksimo de etiketas - hint_html: "Avalia tus etiketas mas importantes en tu profil. Se amostran de forma prominente en tu profil publiko i permeten a los utilizadores navigar por tus publikasyones publikas espesifikamente basho akeyas etiketas." filters: contexts: account: Profiles diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 006668fbe8..0f08842c90 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -960,8 +960,6 @@ lt: your_appeal_pending: Pateikei apeliaciją your_appeal_rejected: Tavo apeliacija buvo atmesta edit_profile: - basic_information: Pagrindinė informacija - hint_html: "Tinkink tai, ką žmonės mato tavo viešame profilyje ir šalia įrašų. Kiti žmonės labiau linkę sekti atgal ir bendrauti su tavimi, jei tavo profilis yra užpildytas ir turi profilio nuotrauką." other: Kita emoji_styles: auto: Automatinis @@ -994,9 +992,6 @@ lt: lists: Sąrašai mutes: Nutildei storage: Medijos saugykla - featured_tags: - add_new: Pridėti naują - hint_html: "Savo profilyje parodyk svarbiausias grotažymes. Tai puikus įrankis kūrybiniams darbams ir ilgalaikiams projektams sekti, todėl svarbiausios grotažymės rodomos matomoje vietoje profilyje ir leidžia greitai pasiekti tavo paties įrašus." filters: contexts: account: Profiliai diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 89f5c43a21..e21ec5355d 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -1349,8 +1349,6 @@ lv: your_appeal_pending: Tu iesniedzi pārsūdzību your_appeal_rejected: Tava pārsūdzība tika noraidīta edit_profile: - basic_information: Pamata informācija - hint_html: "Pielāgo, ko cilvēki redz Tavā publiskajā profilā un blakus Taviem ierakstiem. Ir lielāka iespējamība, ka citi clivēki sekos Tev un mijiedarbosies ar Tevi, ja Tev ir aizpildīts profils un profila attēls." other: Cits errors: '400': Tevis iesniegtais pieprasījums bija nederīgs vai nepareizi izveidots. @@ -1386,10 +1384,8 @@ lv: mutes: Apklusinātie konti storage: Multividesu krātuve featured_tags: - add_new: Pievienot jaunu errors: limit: Tu jau esi piedāvājis maksimālo tēmturu skaitu - hint_html: "Izcel savus vissvarīgākos tēmturus savā profilā! Lielisks rīks, lai izsekotu saviem radošajiem darbiem un ilgtermiņa projektiem, izceltie tēmturi tiek attēloti pamanāmi attēloti Tavā profilā un ļauj ātru piekļuvi saviem ierakstiem." filters: contexts: account: Profili diff --git a/config/locales/ms.yml b/config/locales/ms.yml index afd74144a0..4abdc1fad9 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -1108,8 +1108,6 @@ ms: your_appeal_pending: Anda telah menghantar rayuan your_appeal_rejected: Rayuan anda telah ditolak edit_profile: - basic_information: Maklumat Asas - hint_html: "Sesuaikan perkara yang orang lihat pada profil awam anda dan di sebelah siaran anda. Orang lain lebih berkemungkinan mengikuti anda kembali dan berinteraksi dengan anda apabila anda mempunyai profil dan gambar profil yang telah diisi." other: Lain-lain errors: '400': Permintaan yang anda serahkan tidak sah atau salah bentuk. @@ -1145,10 +1143,8 @@ ms: mutes: Redaman anda storage: Storan Media featured_tags: - add_new: Tambah baharu errors: limit: Anda telah memaparkan bilangan maksimum hashtag - hint_html: "Tampilkan hashtag paling penting anda pada profil anda. Alat yang hebat untuk menjejaki karya kreatif dan projek jangka panjang anda, hashtag yang ditampilkan dipaparkan dengan jelas pada profil anda dan membenarkan akses pantas kepada pos anda sendiri." filters: contexts: account: Profil diff --git a/config/locales/my.yml b/config/locales/my.yml index fd0bbcb005..38555660b7 100644 --- a/config/locales/my.yml +++ b/config/locales/my.yml @@ -1096,8 +1096,6 @@ my: your_appeal_pending: အယူခံဝင်ရန် တင်သွင်းထားသည် your_appeal_rejected: အယူခံဝင်မှုကို ပယ်ချလိုက်သည် edit_profile: - basic_information: အခြေခံသတင်းအချက်အလက် - hint_html: "သင်၏ အများမြင်ပရိုဖိုင်နှင့် သင့်ပို့စ်များဘေးရှိ တွေ့မြင်ရသည့်အရာကို စိတ်ကြိုက်ပြင်ဆင်ပါ။ သင့်တွင် ပရိုဖိုင်နှင့် ပရိုဖိုင်ပုံတစ်ခု ဖြည့်သွင်းထားပါက အခြားသူများအနေဖြင့် သင်နှင့် အပြန်အလှန် တုံ့ပြန်နိုင်ခြေပိုများပါသည်။" other: အခြား errors: '400': သင်တင်ပြသော တောင်းဆိုချက်မှာ မမှန်ကန်ပါ သို့မဟုတ် ပုံစံမမှန်ပါ။ @@ -1133,10 +1131,8 @@ my: mutes: အသံပိတ် storage: မီဒီယာသိုလှောင်မှု featured_tags: - add_new: အသစ် ထည့်ပါ errors: limit: ဟက်ရှ်တဂ်အရေအတွက် အများဆုံးကို ဖော်ပြပြီးဖြစ်သည် - hint_html: " hashtags ဆိုသည်မှာ အဘယ်နည်း။ ၎င်းတို့ကို သင်၏ အများမြင်ပရိုဖိုင်တွင် ပြသထားပြီး ထို hashtags များအောက်တွင် လူများအား သင်၏ အများမြင်ပို့စ်များကို ကြည့်ရှုရန်ခွင့်ပြုထားသည်။ ၎င်းတို့သည် ဖန်တီးမှုလက်ရာများ သို့မဟုတ် ရေရှည်စီမံကိန်းများ ခြေရာခံရန်အတွက် အသုံးဝင်ပါသည်။" filters: contexts: account: ပရိုဖိုင်များ diff --git a/config/locales/nan-TW.yml b/config/locales/nan-TW.yml index 0dfc96da0c..b1c60ad78a 100644 --- a/config/locales/nan-TW.yml +++ b/config/locales/nan-TW.yml @@ -1397,8 +1397,6 @@ nan-TW: your_appeal_pending: Lí有送投訴 your_appeal_rejected: Lí ê投訴已經受拒絕 edit_profile: - basic_information: 基本ê資訊 - hint_html: "自訂lâng佇lí ê個人資料kap lí ê Po文邊仔所通看ê。Nā是lí有添好個人資料kap標á,別lâng較有可能kā lí跟tuè轉去,kap lí互動。" other: 其他 redesign_body: 編輯個人檔案tsit-má ē當直接對個人資料頁接近使用。 redesign_button: Kàu hia @@ -1472,10 +1470,8 @@ nan-TW: mutes: Lí消音ê storage: 媒體儲存 featured_tags: - add_new: 加新ê errors: limit: Lí已經kā hashtag推薦kàu盡磅ah。 - hint_html: "佇個人資料推薦lí上重要ê hashtag。Tse是誠好ê家私,通the̍h來追蹤lí ê創意作品kap長期計畫。推薦ê hashtag ē佇lí ê個人資料顯目展示,koh允准緊緊接近使用lí家tī ê PO文。" filters: contexts: account: 個人資料 diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 377e915ad1..557b9ab886 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -1418,8 +1418,6 @@ nl: your_appeal_pending: Je hebt een bezwaar ingediend your_appeal_rejected: Jouw bezwaar is afgewezen edit_profile: - basic_information: Algemene informatie - hint_html: "Wat mensen op jouw openbare profiel en naast je berichten zien aanpassen. Andere mensen gaan je waarschijnlijk eerder volgen en hebben vaker interactie met je, wanneer je profiel is ingevuld en je een profielfoto hebt." other: Overige redesign_body: Het bewerken van je profiel is nu toegankelijk vanaf de profielpagina. redesign_button: Ga erheen @@ -1494,10 +1492,8 @@ nl: mutes: Genegeerde accounts storage: Mediabestanden featured_tags: - add_new: Nieuwe toevoegen errors: limit: Je hebt al het maximale aantal hashtags uitgelicht - hint_html: "Toon je belangrijkste hashtags op je profiel Deze worden prominent op je openbare profiel getoond en stelt mensen in staat om je openbare berichten per hashtag te bekijken. Het is een goed hulpmiddel om creatieve werkzaamheden of langetermijnprojecten bij te houden." filters: contexts: account: Profielen diff --git a/config/locales/nn.yml b/config/locales/nn.yml index efdcd14bc4..2dd8886fc8 100644 --- a/config/locales/nn.yml +++ b/config/locales/nn.yml @@ -1418,8 +1418,6 @@ nn: your_appeal_pending: Du har levert en klage your_appeal_rejected: Din klage har blitt avvist edit_profile: - basic_information: Grunnleggande informasjon - hint_html: "Tilpass kva folk ser på den offentlege profilen din og ved sida av innlegga dine. Andre vil i større grad fylgja og samhandla med deg når du har eit profilbilete og har fyllt ut profilen din." other: Anna emoji_styles: auto: Auto @@ -1459,10 +1457,8 @@ nn: mutes: Du dempar storage: Medielagring featured_tags: - add_new: Legg til ny errors: limit: Du har allereie valt ut så mange emneknaggar som det går an å gjera - hint_html: "Vel ut dei viktigaste emneknaggane på profilen din. Utvalde emneknaggar er eit flott verkty for å halda oversikt over kreativt arbeid og langtidsprosjekt. Dei er lette å sjå på profilen din, og gjev deg rask tilgang til dine eigne innlegg." filters: contexts: account: Profiler diff --git a/config/locales/no.yml b/config/locales/no.yml index e2bf55a229..42853f0d89 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -1165,8 +1165,6 @@ your_appeal_pending: Du har levert en anke your_appeal_rejected: Anken din har blitt avvist edit_profile: - basic_information: Grunnleggende informasjon - hint_html: "Tilpass hva folk ser på din offentlige profil og ved siden av dine innlegg. Det er mer sannsynlig at andre mennesker følger deg tilbake og samhandler med deg når du har fylt ut en profil og et profilbilde." other: Annet errors: '400': Forespørselen du sendte inn var ugyldig eller feil. @@ -1202,10 +1200,8 @@ mutes: Du demper storage: Medialagring featured_tags: - add_new: Legg til ny errors: limit: Du har allerede fremhevet det maksimale antall emneknagger - hint_html: "Hva er utvalgte emneknagger? De vises frem tydelig på din offentlige profil, og lar folk bla i dine offentlige innlegg som spesifikt har de emneknaggene. De er et bra verktøy for å holde styr på kreative verk eller langtidsprosjekter." filters: contexts: account: Profiler diff --git a/config/locales/oc.yml b/config/locales/oc.yml index 4efdbc6a92..ecb7c0680b 100644 --- a/config/locales/oc.yml +++ b/config/locales/oc.yml @@ -562,8 +562,6 @@ oc: lists: Listas mutes: Personas rescondudas storage: Mèdias gardats - featured_tags: - add_new: Ajustar una etiqueta nòva filters: contexts: account: Perfils diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 2b258ab495..56045f676d 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -1412,8 +1412,6 @@ pl: your_appeal_pending: Zgłosiłeś odwołanie your_appeal_rejected: Twoje odwołanie zostało odrzucone edit_profile: - basic_information: Podstawowe informacje - hint_html: "Dostosuj to, co ludzie widzą na Twoim profilu publicznym i obok Twoich wpisów. Inne osoby są bardziej skłonne obserwować Cię i wchodzić z Tobą w interakcje, gdy masz wypełniony profil i zdjęcie profilowe." other: Inne emoji_styles: auto: Automatycznie @@ -1453,10 +1451,8 @@ pl: mutes: Wyciszeni storage: Urządzenie przechowujące dane featured_tags: - add_new: Dodaj nowy errors: limit: Przekroczono maksymalną liczbę hasztagów - hint_html: "Czym są wyróżnione hashtagi? Są one na stałe wyświetlane na Twoim profilu i pozwalają innym na przeglądanie Twoich wpisów używających tych hashtagów. Są doskonałym narzędziem do śledzenia kreatywnej twórczości czy długoterminowych projektów." filters: contexts: account: Profile diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index e54fa6d761..f6cc614a45 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -1418,8 +1418,6 @@ pt-BR: your_appeal_pending: Você enviou uma revisão your_appeal_rejected: Sua revisão foi rejeitada edit_profile: - basic_information: Informações básicas - hint_html: "Personalize o que as pessoas veem no seu perfil público e ao lado de suas publicações. É mais provável que outras pessoas o sigam de volta e interajam com você quando você tiver um perfil preenchido e uma foto de perfil." other: Outro redesign_body: A edição de perfil pode ser acessada diretamente a partir da página de perfil. redesign_button: Ir para lá @@ -1488,10 +1486,8 @@ pt-BR: mutes: Você silenciou storage: Armazenamento de mídia featured_tags: - add_new: Adicionar hashtag errors: limit: Você já destacou o número máximo de hashtags - hint_html: "O que são hashtags em destaque? Elas são exibidas no seu perfil público e permitem que as pessoas acessem suas publicações públicos que contenham especificamente essas hashtags. São uma excelente ferramenta para acompanhar os trabalhos criativos ou os projetos de longo prazo." filters: contexts: account: Perfis diff --git a/config/locales/pt-PT.yml b/config/locales/pt-PT.yml index 36ba06e400..281230890a 100644 --- a/config/locales/pt-PT.yml +++ b/config/locales/pt-PT.yml @@ -1411,8 +1411,6 @@ pt-PT: your_appeal_pending: Submeteste uma contestação your_appeal_rejected: A tua contestação foi rejeitada edit_profile: - basic_information: Informação básica - hint_html: "Personalizq o que as pessoas veem no teu perfil público e junto das tuas publicações. É mais provável que as outras pessoas te sigam de volta ou interajam contigo se tiveres um perfil preenchido e uma imagem de perfil." other: Outro emoji_styles: auto: Auto @@ -1452,10 +1450,8 @@ pt-PT: mutes: Que ocultaste storage: Armazenamento de multimédia featured_tags: - add_new: Adicionar nova errors: limit: Já destacaste o número máximo de etiquetas permitido - hint_html: "Coloca as etiquetas mais importantes no teu perfil. Uma excelente ferramenta para acompanhar os teus trabalhos criativos e projetos a longo prazo, as etiquetas em destaque são apresentadas de forma proeminente no teu perfil e permitem um acesso rápido às tuas próprias publicações." filters: contexts: account: Perfis diff --git a/config/locales/ru.yml b/config/locales/ru.yml index de806f33a0..9e4e1e164a 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -1423,8 +1423,6 @@ ru: your_appeal_pending: Вы подали апелляцию your_appeal_rejected: Ваша апелляция отклонена edit_profile: - basic_information: Основные данные - hint_html: "Здесь вы можете изменить всё то, что будет отображаться в вашем публичном профиле и рядом с вашими постами. На вас будут чаще подписываться и с вами будут чаще взаимодействовать, если у вас будет заполнен профиль и добавлено фото профиля." other: Разное redesign_body: Теперь редактирование профиля доступно прямо на странице профиля. redesign_button: Перейти @@ -1476,10 +1474,8 @@ ru: mutes: Игнорируемые пользователи storage: Хранилище медиа featured_tags: - add_new: Добавить errors: limit: Вы достигли максимального количества хештегов, которые можно рекомендовать в профиле - hint_html: "Рекомендуйте самые важные для вас хештеги в своём профиле. Это отличный инструмент для того, чтобы держать подписчиков в курсе ваших долгосрочных проектов и творческих работ. Рекомендации хештегов заметны в вашем профиле и предоставляют быстрый доступ к вашим постам." filters: contexts: account: Профили diff --git a/config/locales/sc.yml b/config/locales/sc.yml index 2c94bc3a10..cbad11bcfa 100644 --- a/config/locales/sc.yml +++ b/config/locales/sc.yml @@ -771,7 +771,6 @@ sc: delete_statuses: Cantzelladura de publicatziones none: Atentzione edit_profile: - basic_information: Informatzione bàsica other: Àteru errors: '400': Sa dimanda chi as imbiadu non fiat vàlida o non fiat curreta. @@ -806,9 +805,6 @@ sc: lists: Listas mutes: Ses ponende a sa muda storage: Immagasinamentu - featured_tags: - add_new: Agiunghe noa - hint_html: "Ite sunt is etichetas in evidèntzia? Sunt ammustradas in evidèntzia in su profilu pùblicu tuo e permitint a sa gente de navigare is messàgios pùblicos tuos in cussas etichetas ispetzìficas. Sunt unu traste perfetu pro tènnere unu registru de òperas creativas o progetos longos." filters: contexts: account: Profilos diff --git a/config/locales/sco.yml b/config/locales/sco.yml index b963a66e31..b1042dbe50 100644 --- a/config/locales/sco.yml +++ b/config/locales/sco.yml @@ -1026,9 +1026,6 @@ sco: lists: Lists mutes: Ye wheesht storage: Media storage - featured_tags: - add_new: Add new - hint_html: "Whit's featurt hashtags? They get pit prominently on yer public profile an alloo fowk fir tae broose yer public posts specifically unner thae hashtags. They'r a braw tuil fir keepin track o creative warks or lang-term projects." filters: contexts: account: Profiles diff --git a/config/locales/si.yml b/config/locales/si.yml index 40061b262b..c9bc11dada 100644 --- a/config/locales/si.yml +++ b/config/locales/si.yml @@ -885,7 +885,6 @@ si: your_appeal_pending: ඔබ අභියාචනයක් ඉදිරිපත් කර ඇත your_appeal_rejected: ඔබගේ අභියාචනය ප්‍රතික්ෂේප කර ඇත edit_profile: - basic_information: මූලික තොරතුරු other: වෙනත් errors: '400': ඔබ ඉදිරිපත් කළ ඉල්ලීම අවලංගු හෝ විකෘති විය. @@ -920,8 +919,6 @@ si: lists: ලැයිස්තු mutes: ඔබ නිහඬ කරන්න storage: මාධ්‍ය ආචයනය - featured_tags: - add_new: අලුතින් එකතු කරන්න filters: contexts: account: පැතිකඩයන් diff --git a/config/locales/sk.yml b/config/locales/sk.yml index a3f9b5cd8a..f8d138068a 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -935,8 +935,6 @@ sk: your_appeal_approved: Tvoja námietka bola schválená your_appeal_pending: Odoslal si námietku edit_profile: - basic_information: Základné informácie - hint_html: "Upravte, čo ľudia vidia vo vašom verejom profile a pri vašich príspevkoch. S vyplneným profilom a nahratou profilovou fotkou sa zvýšia šance, že vás iní ľudia budú sledovať a budú s vami komunikovať." other: Ostatné errors: '400': Požiadavka, ktorú si odoslal/a, bola buď nesprávna, alebo znehodnotená. @@ -971,10 +969,8 @@ sk: mutes: Stíšil/a si storage: Úložisko médií featured_tags: - add_new: Pridať nový errors: limit: Už ste si predvolili najvyšší možný počet hashtagov - hint_html: "Zobrazte vo svojom profile vaše najvýznamnejšie hashtagy. Zvýraznené hashtagy majú viditeľné miesto vo vašom profile a umožňujú vám rýchly prístup k vašim príspevkom, aby ste mali svoje diela a dlhodobé projekty vždy poruke." filters: contexts: account: Profily diff --git a/config/locales/sl.yml b/config/locales/sl.yml index ed5f5f4ca8..ca0fd7fe7d 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -1409,8 +1409,6 @@ sl: your_appeal_pending: Oddali ste pritožbo your_appeal_rejected: Vaša pritožba je bila zavržena edit_profile: - basic_information: Osnovni podatki - hint_html: "Prilagodite, kaj ljudje vidijo na vašem javnem profilu in poleg vaših objav. Drugi vam bodo raje sledili nazaj in z vami klepetali, če boste imeli izpolnjen profil in nastavljeno profilno sliko." other: Drugo emoji_styles: auto: Samodejno @@ -1449,10 +1447,8 @@ sl: mutes: Utišani storage: Shranjeni mediji featured_tags: - add_new: Dodaj novo errors: limit: Ste že dodali največje število ključnikov - hint_html: "Kaj so izpostavljeni ključniki? Prikazani so vidno na vašem javnem profilu in ljudem omogočajo brskanje po vaših javnih objavah posebej pod temi ključniki. So odlično orodje za spremljanje ustvarjalnih del ali dolgoročnih projektov." filters: contexts: account: Profili diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 3d15e9b241..2a734d2875 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -1407,8 +1407,6 @@ sq: your_appeal_pending: Keni parashtruar një apelim your_appeal_rejected: Apelimi juaj është hedhur poshtë edit_profile: - basic_information: Hollësi elementare - hint_html: "Përshtatni ç’shohin njerëzit në profilin tuaj publik dhe në krah të postimeve tuaja. Personat e tjerë ka më shumë gjasa t’ju ndjekin dhe ndërveprojnë me ju, kur keni të plotësuar profilin dhe një foto profili." other: Tjetër redesign_body: Përpunimi i profilit tanimë mund të kryhet drejt e nga faqja e profilit. redesign_button: Kalo atje @@ -1479,10 +1477,8 @@ sq: mutes: Heshtoni storage: Depozitë media featured_tags: - add_new: Shtoni të re errors: limit: Keni përdorur tashmë numrin maksimum të hashtag-ëve - hint_html: "Çfarë janë hashtag-ët e zgjedhur? Këta shfaqen dukshëm te profili juaj publik dhe u lejojnë të tjerëve të shfletojnë postime tuajt publikë posaçërisht nën këta hashtag-ë. Janë një mjet i goditur për të ndjekur punë krijuese ose projekte afatgjata." filters: contexts: account: Profile diff --git a/config/locales/sr-Latn.yml b/config/locales/sr-Latn.yml index d75f5f76d3..82b52b8240 100644 --- a/config/locales/sr-Latn.yml +++ b/config/locales/sr-Latn.yml @@ -1162,8 +1162,6 @@ sr-Latn: your_appeal_pending: Priložili ste žalbu your_appeal_rejected: Vaša žalba je odbijena edit_profile: - basic_information: Osnovne informacije - hint_html: "Prilagodite šta ljudi vide na vašem javnom profilu i pored vaših objava. Veća je verovatnoća da će vas drugi pratiti i komunicirati sa vama kada imate popunjen profil i sliku profila." other: Ostalo errors: '400': Zahtev koji ste podneli je bio nelegitiman ili u pogrešnom formatu. @@ -1199,10 +1197,8 @@ sr-Latn: mutes: Ignorišete storage: Multimedijalno skladište featured_tags: - add_new: Dodaj novu errors: limit: Već ste istakli maksimalan broj heš oznaka - hint_html: "Istaknite najvažnije heš oznake na svom profilu. Odličan alat za praćenje vaših kreativnih radova i dugoročnih projekata, istaknute heš oznake su istaknute na vašem profilu i omogućuju brz pristup vašim objavama." filters: contexts: account: Profili diff --git a/config/locales/sr.yml b/config/locales/sr.yml index 8bc89180d4..51ad0e572b 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -1192,8 +1192,6 @@ sr: your_appeal_pending: Приложили сте жалбу your_appeal_rejected: Ваша жалба је одбијена edit_profile: - basic_information: Основне информације - hint_html: "Прилагодите шта људи виде на вашем јавном профилу и поред ваших објава. Већа је вероватноћа да ће вас други пратити и комуницирати са вама када имате попуњен профил и слику профила." other: Остало errors: '400': Захтев који сте поднели је био нелегитиман или у погрешном формату. @@ -1229,10 +1227,8 @@ sr: mutes: Игноришете storage: Мултимедијално складиште featured_tags: - add_new: Додај нову errors: limit: Већ сте истакли максималан број хеш ознака - hint_html: "Истакните најважније хеш ознаке на свом профилу. Одличан алат за праћење ваших креативних радова и дугорочних пројеката, истакнуте хеш ознаке су истакнуте на вашем профилу и омогућују брз приступ вашим објавама." filters: contexts: account: Профили diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 53510e2dcc..6b481ccca7 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -1412,8 +1412,6 @@ sv: your_appeal_pending: Du har lämnat in en överklagan your_appeal_rejected: Din överklagan har avvisats edit_profile: - basic_information: Allmän information - hint_html: "Anpassa vad folk ser på din offentliga profil och bredvid dina inlägg. Andra personer är mer benägna att följa dig och interagera med dig när du har en ifylld profil och en profilbild." other: Övrigt email_subscription_mailer: notification: @@ -1461,10 +1459,8 @@ sv: mutes: Du tystar storage: Medialagring featured_tags: - add_new: Lägg till ny errors: limit: Du har redan fäst det maximala antalet hashtags - hint_html: "Vad är utvalda hashtaggar? De visas tydligt på din offentliga profil och låter andra bläddra bland dina offentliga inlägg specifikt under dessa hashtaggar. De är ett bra verktyg för att hålla reda på kreativa arbeten eller långsiktiga projekt." filters: contexts: account: Profiler diff --git a/config/locales/th.yml b/config/locales/th.yml index 905ecad4ab..f94f064150 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -1296,8 +1296,6 @@ th: your_appeal_pending: คุณได้ส่งการอุทธรณ์ your_appeal_rejected: ปฏิเสธการอุทธรณ์ของคุณแล้ว edit_profile: - basic_information: ข้อมูลพื้นฐาน - hint_html: "ปรับแต่งสิ่งที่ผู้คนเห็นในโปรไฟล์สาธารณะของคุณและถัดจากโพสต์ของคุณ ผู้คนอื่น ๆ มีแนวโน้มที่จะติดตามคุณกลับและโต้ตอบกับคุณมากขึ้นเมื่อคุณมีโปรไฟล์ที่กรอกแล้วและรูปภาพโปรไฟล์" other: อื่น ๆ errors: '400': คำขอที่คุณได้ส่งไม่ถูกต้องหรือผิดรูปแบบ @@ -1333,10 +1331,8 @@ th: mutes: คุณซ่อน storage: ที่เก็บข้อมูลสื่อ featured_tags: - add_new: เพิ่มใหม่ errors: limit: คุณได้แสดงแฮชแท็กถึงจำนวนสูงสุดไปแล้ว - hint_html: "แสดงแฮชแท็กที่สำคัญที่สุดของคุณในโปรไฟล์ของคุณ เครื่องมือที่ยอดเยี่ยมสำหรับการติดตามงานสร้างสรรค์และโครงการระยะยาวของคุณ จะแสดงแฮชแท็กที่น่าสนใจอย่างเด่นชัดในโปรไฟล์ของคุณและอนุญาตให้เข้าถึงโพสต์ของคุณเองได้อย่างรวดเร็ว" filters: contexts: account: โปรไฟล์ diff --git a/config/locales/tr.yml b/config/locales/tr.yml index e6b3d1d155..b601f2d36d 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -1418,8 +1418,6 @@ tr: your_appeal_pending: Bir itiraz gönderdiniz your_appeal_rejected: İtirazınız reddedildi edit_profile: - basic_information: Temel bilgiler - hint_html: "İnsanlara herkese açık profilinizde ve gönderilerinizin yanında ne göstermek istediğinizi düzenleyin. Dolu bir profile ve bir profil resmine sahip olduğunuzda diğer insanlar daha yüksek ihtimalle sizi takip etmek ve sizinle etkileşime geçmek isteyeceklerdir." other: Diğer redesign_body: Profil düzenlemeye şimdi doğrudan profil sayfasından da erişilebilir. redesign_button: Git @@ -1494,10 +1492,8 @@ tr: mutes: Sessize aldıkların storage: Medya depolaması featured_tags: - add_new: Yeni ekle errors: limit: Zaten azami etiket sayısını öne çıkardınız - hint_html: "Öne çıkan etiketler nelerdir? Genel profilinizde belirgin bir şekilde görüntülenirler ve kişilerin genel yayınlarınıza özellikle bu etiketler altında göz atmalarına izin verir. Yaratıcı çalışmaları veya uzun vadeli projeleri takip etmek için harika bir araçtır." filters: contexts: account: Profiller diff --git a/config/locales/tt.yml b/config/locales/tt.yml index a9677476ae..b82b637c1c 100644 --- a/config/locales/tt.yml +++ b/config/locales/tt.yml @@ -369,8 +369,6 @@ tt: csv: СSV lists: Исемлекләр storage: Медиа-файллар саклагычы - featured_tags: - add_new: Яңа өстәү filters: contexts: notifications: Искәртүләр diff --git a/config/locales/uk.yml b/config/locales/uk.yml index 431b6e18a5..3f684e0a29 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -1359,8 +1359,6 @@ uk: your_appeal_pending: Ви не подавали апеляцій your_appeal_rejected: Вашу апеляцію було відхилено edit_profile: - basic_information: Основна інформація - hint_html: "Налаштуйте те, що люди бачитимуть у вашому загальнодоступному профілі та поруч із вашими дописами. Інші люди з більшою ймовірністю підпишуться на вас та взаємодіятимуть з вами, якщо у вас є заповнений профіль та зображення профілю." other: Інше emoji_styles: auto: Авто @@ -1399,10 +1397,8 @@ uk: mutes: Список нехтуваних storage: Ваш медіавміст featured_tags: - add_new: Додати новий errors: limit: Ви досягли максимальної кількості хештеґів - hint_html: "Що таке виділені хештеги? Чудовий інструмент для відстеження ваших творчих робіт і довготривалих проєктів, рекомендовані хештеги показані першими у вашому профілі та дозволяють швидко отримати доступ до ваших власних повідомлень." filters: contexts: account: Профілі diff --git a/config/locales/vi.yml b/config/locales/vi.yml index e8b5b5b1b5..554067c7fa 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -1397,8 +1397,6 @@ vi: your_appeal_pending: Bạn đã gửi một khiếu nại your_appeal_rejected: Khiếu nại của bạn bị từ chối edit_profile: - basic_information: Thông tin cơ bản - hint_html: Mọi người sẽ muốn theo dõi và tương tác với bạn hơn nếu bạn có ảnh đại diện và hồ sơ hoàn chỉnh. other: Khác redesign_body: Giờ đây, hồ sơ đã có thể chỉnh sửa trực tiếp từ trang hồ sơ. redesign_button: Tới đó @@ -1472,10 +1470,8 @@ vi: mutes: Tài khoản đã phớt lờ storage: Tệp featured_tags: - add_new: Thêm mới errors: limit: Bạn đã đạt tới số lượng hashtag tối đa - hint_html: "Nêu bật những hashtag thường dùng. Một công cụ tuyệt vời để theo dõi chuỗi tác phẩm sáng tạo và dự án dài hạn của bạn, cũng như giúp truy cập nhanh vào các tút." filters: contexts: account: Trang hồ sơ diff --git a/config/locales/zh-CN.yml b/config/locales/zh-CN.yml index 1e7d32b7e3..7cfdbdd232 100644 --- a/config/locales/zh-CN.yml +++ b/config/locales/zh-CN.yml @@ -1397,8 +1397,6 @@ zh-CN: your_appeal_pending: 你已经提交了一次申诉 your_appeal_rejected: 你的申诉已被驳回 edit_profile: - basic_information: 基本信息 - hint_html: "自定义公开资料和嘟文旁边显示的内容。当你填写完整的个人资料并设置了头像时,其他人更有可能关注你并与你互动。" other: 其他 redesign_body: 个人资料编辑功能现在可以直接在个人资料页面访问。 redesign_button: 前往 @@ -1472,10 +1470,8 @@ zh-CN: mutes: 已被你隐藏的 storage: 媒体文件存储 featured_tags: - add_new: 添加新条目 errors: limit: 你所推荐的话题数已达上限 - hint_html: "什么是精选话题? 它们被显示在你的公开个人资料中的突出位置,人们可以在这些标签下浏览你的公共嘟文。 它们是跟踪创作或长期项目的进度的重要工具。" filters: contexts: account: 个人资料 diff --git a/config/locales/zh-HK.yml b/config/locales/zh-HK.yml index 6caf362fa7..e5d984ce42 100644 --- a/config/locales/zh-HK.yml +++ b/config/locales/zh-HK.yml @@ -1162,8 +1162,6 @@ zh-HK: your_appeal_pending: 你已提交申訴 your_appeal_rejected: 你的申訴已被駁回 edit_profile: - basic_information: 基本資料 - hint_html: "自訂你的公開個人檔案和帖文內容。當你有完整的個人檔案和頭像時,其他人更願意追蹤你和與你互動。" other: 其他 errors: '400': 你的請求無效或格式不正確。 @@ -1199,10 +1197,8 @@ zh-HK: mutes: 你所靜音的用戶 storage: 媒體容量大小 featured_tags: - add_new: 新增 errors: limit: 你推薦的標籤數量已達上限 - hint_html: "甚麼是推薦主題標籤? 它們會被顯示在你的個人資料頁面,讓其他人可以根據標籤瀏覽你的公開文章,令人們更易找到你創作或者長期作品!" filters: contexts: account: 個人資料 diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 1a21152624..41e259c80b 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -1399,8 +1399,6 @@ zh-TW: your_appeal_pending: 您已遞交申訴 your_appeal_rejected: 您的申訴已被駁回 edit_profile: - basic_information: 基本資訊 - hint_html: "自訂人們能於您個人檔案及嘟文旁所見之內容。當您完成填寫個人檔案及設定大頭貼後,其他人們比較願意跟隨您並與您互動。" other: 其他 redesign_body: 個人檔案編輯功能現在能自個人檔案頁面直接存取。 redesign_button: 前往 @@ -1474,10 +1472,8 @@ zh-TW: mutes: 您靜音的使用者 storage: 匯出檔案大小 featured_tags: - add_new: 新增 errors: limit: 您所推薦之主題標籤數量已達上限 - hint_html: "於個人檔案上展示您的推薦主題標籤 展示創意作品或者長期更新的專案的絕佳工具,推薦主題標籤於您個人資料頁面顯眼地展示,並且能快速存取您自己的嘟文。" filters: contexts: account: 個人檔案 diff --git a/spec/system/profile_spec.rb b/spec/system/profile_spec.rb index eb0aed1593..87fe4b03b2 100644 --- a/spec/system/profile_spec.rb +++ b/spec/system/profile_spec.rb @@ -17,25 +17,6 @@ RSpec.describe 'Profile' do .to have_title("alice (@alice@#{local_domain_uri.host})") end - it 'I can change my account' do - visit settings_profile_path - - fill_in 'Display name', with: 'Bob' - fill_in 'Bio', with: 'Bob is silent' - - account_fields_labels.first.fill_in with: 'Personal Website' - account_fields_values.first.fill_in with: 'https://host.example/personal' - - account_fields_labels.last.fill_in with: 'Professional Biography' - account_fields_values.last.fill_in with: 'https://host.example/pro' - - expect { submit_form } - .to change { bob.account.reload.display_name }.to('Bob') - .and(change_account_fields) - expect(page) - .to have_content 'Changes successfully saved!' - end - def submit_form first('button[type=submit]').click end diff --git a/spec/system/settings/featured_tags_spec.rb b/spec/system/settings/featured_tags_spec.rb deleted file mode 100644 index 2460817f94..0000000000 --- a/spec/system/settings/featured_tags_spec.rb +++ /dev/null @@ -1,42 +0,0 @@ -# frozen_string_literal: true - -require 'rails_helper' - -RSpec.describe 'Settings Featured Tags' do - let(:user) { Fabricate(:user) } - - before { sign_in(user) } - - describe 'Managing tags' do - let(:tag) { Fabricate(:tag) } - let(:status) { Fabricate :status, account: user.account } - - before { status.tags << tag } - - it 'Views, adds, and removes featured tags' do - visit settings_featured_tags_path - - # Link to existing tag used on a status - expect(page.body) - .to include( - settings_featured_tags_path(featured_tag: { name: tag.name }) - ) - - # Invalid entry - fill_in 'featured_tag_name', with: 'test, #foo !bleh' - expect { click_on I18n.t('featured_tags.add_new') } - .to_not change(user.account.featured_tags, :count) - - # Valid entry - fill_in 'featured_tag_name', with: '#friends' - expect { click_on I18n.t('featured_tags.add_new') } - .to change(user.account.featured_tags, :count).by(1) - - # Delete the created entry - expect { click_on I18n.t('filters.index.delete') } - .to change(user.account.featured_tags, :count).by(-1) - expect(page) - .to have_title(I18n.t('settings.featured_tags')) - end - end -end diff --git a/spec/system/settings/profiles_spec.rb b/spec/system/settings/profiles_spec.rb deleted file mode 100644 index 23d9ab2fda..0000000000 --- a/spec/system/settings/profiles_spec.rb +++ /dev/null @@ -1,36 +0,0 @@ -# frozen_string_literal: true - -require 'rails_helper' - -RSpec.describe 'Settings profile page' do - let(:user) { Fabricate :user } - let(:account) { user.account } - - before do - sign_in user - end - - it 'Views and updates profile information' do - visit settings_profile_path - - expect(page) - .to have_private_cache_control - - fill_in display_name_field, with: 'New name' - attach_file avatar_field, Rails.root.join('spec', 'fixtures', 'files', 'avatar.gif') - - expect { click_on submit_button } - .to change { account.reload.display_name }.to('New name') - .and(change { account.reload.avatar.instance.avatar_file_name }.from(nil).to(be_present)) - expect(ActivityPub::UpdateDistributionWorker) - .to have_enqueued_sidekiq_job(account.id) - end - - def display_name_field - form_label('defaults.display_name') - end - - def avatar_field - form_label('defaults.avatar') - end -end