pl-fe: strings cleanup

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-01-05 21:18:04 +01:00
parent 0064b5eee8
commit 0c0d6bd9d9
5 changed files with 5 additions and 10 deletions

View File

@ -106,7 +106,7 @@ const messages = defineMessages({
replyAll: { id: 'status.reply_all', defaultMessage: 'Reply to thread' },
replyConfirm: { id: 'confirmations.reply.confirm', defaultMessage: 'Reply' },
replyMessage: { id: 'confirmations.reply.message', defaultMessage: 'Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?' },
report: { id: 'status.report', defaultMessage: 'Report @{name}' },
report: { id: 'account.report', defaultMessage: 'Report @{name}' },
share: { id: 'status.share', defaultMessage: 'Share' },
unbookmark: { id: 'status.unbookmark', defaultMessage: 'Remove bookmark' },
unmuteConversation: { id: 'status.unmute_conversation', defaultMessage: 'Unmute conversation' },

View File

@ -57,7 +57,7 @@ const messages = defineMessages({
direct: { id: 'status.direct', defaultMessage: 'Direct message @{name}' },
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
report: { id: 'status.report', defaultMessage: 'Report @{name}' },
report: { id: 'account.report', defaultMessage: 'Report @{name}' },
adminAccount: { id: 'status.admin_account', defaultMessage: 'Moderate @{name}' },
adminStatus: { id: 'status.admin_status', defaultMessage: 'Open this post in the moderation interface' },
markStatusSensitive: { id: 'admin.statuses.actions.mark_status_sensitive', defaultMessage: 'Mark post sensitive' },

View File

@ -812,7 +812,6 @@
"edit_profile.fields.web_visibility.none": "Show no posts",
"edit_profile.fields.web_visibility.public": "Show public posts only",
"edit_profile.fields.web_visibility.unlisted": "Show public and unlisted posts",
"edit_profile.header": "Edit profile",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.discoverable": "Display account in profile directory and allow indexing by external services",
"edit_profile.hints.hide_network": "Who you follow and who follows you will not be shown on your profile",
@ -1737,7 +1736,6 @@
"status.remove_post_from_group": "Remove post from group",
"status.reply": "Reply",
"status.reply_all": "Reply to thread",
"status.report": "Report @{name}",
"status.sensitive_warning": "Sensitive content",
"status.sensitive_warning.matches_filter": "Matches filter “<span>{title}</span>”",
"status.sensitive_warning.subtitle": "This content may not be suitable for all audiences.",
@ -1825,8 +1823,6 @@
"theme_toggle.dark": "Dark",
"theme_toggle.light": "Light",
"theme_toggle.system": "System",
"thread_login.login": "Log in",
"thread_login.signup": "Sign up",
"time_remaining.days": "{number, plural, one {# day} other {# days}} left",
"time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
"time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",

View File

@ -41,7 +41,6 @@ const hidesNetwork = ({ __meta }: Pick<CredentialAccount, '__meta'>): boolean =>
const messages = defineMessages({
heading: { id: 'column.edit_profile', defaultMessage: 'Edit profile' },
header: { id: 'edit_profile.header', defaultMessage: 'Edit profile' },
metaFieldLabel: { id: 'edit_profile.fields.meta_fields.label_placeholder', defaultMessage: 'Label' },
metaFieldContent: { id: 'edit_profile.fields.meta_fields.content_placeholder', defaultMessage: 'Content' },
firstMetaFieldLabel: { id: 'edit_profile.fields.meta_fields.label_placeholder.first', defaultMessage: 'Label (e.g. pronouns)' },
@ -333,7 +332,7 @@ const EditProfilePage: React.FC = () => {
? handleFieldChange<string>('header_description') : undefined;
return (
<Column label={intl.formatMessage(messages.header)}>
<Column label={intl.formatMessage(messages.heading)}>
<Form onSubmit={handleSubmit}>
<div className='relative mb-12 flex'>
<HeaderPicker

View File

@ -88,11 +88,11 @@ const LandingTimelinePage = () => {
<HStack className='mb-4 lg:hidden' justifyContent='end' space={4}>
<Button theme='tertiary' to='/login'>
<FormattedMessage id='thread_login.login' defaultMessage='Log in' />
<FormattedMessage id='account.login' defaultMessage='Log in' />
</Button>
{isOpen && (
<Button to='/signup'>
<FormattedMessage id='thread_login.signup' defaultMessage='Sign up' />
<FormattedMessage id='account.register' defaultMessage='Sign up' />
</Button>
)}
</HStack>