mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-26 18:21:00 +00:00
Profile tab accessibility uplift (#1274)
* Combine `joinedAtView` into one accessibility element Previously, the calendar image was visible with a nonsensical label. We use the `.combine` operator here to maintain the proper string formatting of the date. * Improve the accessibility of the AccountDetailHeaderView Previously, this image had no description and no indication that it had an associated interaction. Now, we wrap it in a button that performs the tap gesture action, and remove the element altogether if there is no avatar image set. This commit also handles the checkmark for supporter users * Tweak accessibility of Profile CustomInfoLabels This commit: - Reverses the order of title and value - Sets the value as an `accessibilityValue` - Adds a hint indicating what the button does, as they perform slightly different actions * Make Profile tab header image into a Button This element has an action associated with it (quicklook), so it makes more sense to have it as a button, and hide it if the user does not have an image set. Without the action it would have been considered decorative and should be hidden. * Change accessibilityLabel of Profile tab nav bar item to ‘Options’ “More” is considered overly generic. This commit also adds two additional user input label options * Add accessibility labels for the Profile tab `Picker` Previously, these labels were the default accessibility label provided by the SF symbol, that almost, but not quite, made sense * Remove StatusRowView swipe actions if VoiceOver is running These swipe actions are automagically added to the accessibility element’s custom actions, in addition to the ones already there, which means that there is a significant (and confusing) amount of doubling up going on. * Fix typo in StatusRowView.accessibilityActions * Add accessibilityLabels to all StatusRowActionsView actions * Provide explicit combined accessibility label for unfocused StatusRowView Previously, this was a synthesized label, which read the elements in their traversal order, and didn’t provide any context for which of the three numbers corresponded to replies, boosts or favourites. Now, we create an explicit combined label when the post isn’t being viewed by itself. * Improve accessibility of StatusRow(Reblog|Reply)View They are now combined elements and don’t vend the icon as its own element. * Add missing punctuation to accessibility hints * Remove interaction from Profile tab @username and profile note elements These elements open the profile photo url, which is already provided explicitly through the profile photo * Prefer spoiler warning for StatusRowView accessibility label …but place the full, unredacted content in an `AccessibilityCustomContent` field for easy access. Additionally, if VoiceOver is running, an action to expand the warning is also available. * Represent `FollowButton` elements as Toggles to accessibility Since these buttons have two states (though arguable in the case of following, but handled here by not changing the representation if a request is pending), it makes sense to handle them as toggles, so they will be read as “Following, On, <Trait>” * Remove errant comment * Add “Verified” accessibilityValue to profile fields * Fix bug StatusRowView default action bug affecting VoiceOver users Previously, the default (‘Activate’) action for VoiceOver users would be to share a link to the toot, rather than navigate to its detail. It’s hard to say exactly what caused this, but the root was the inclusion of the `contextMenu` in the `accessibilityActions`. Now, double-tapping on a a non-focused `StatusRowView` will take you to the toot detail. * Add header trait to Profile tab display name and familiar followers These stand out as being header-like in presentation and represent the beginning of specific parts of the screen. * Add conditional accessibility modifier to Profile tab user-defined fields that opens the correct link * Add accessibility container that contextualises the user-defined fields When VoiceOver users first enter a user-defined field, the container label will be read out before the element’s spoken description. * Improve StatusRowView combined accessibility label It will now start with: “X boosted Y”, “X replied to @Y”, or “X…” depending on the context of the toot. * Change familiar follows thumbnail to a Button; add display name as accessibility label Previously, this button had no context, and would just be a series of images with nothing to allow users to disambiguate them. * Revert changes from ZStack with tap gesture to Button Using a Button for this purpose caused high weirdness in tap zones. Basically everything down to the familiar followers triggered both image buttons. * Add image alt text to StatusRowView and StatusRowMediaPreviewView Previously, there was no way for the intended audience for the alt text to find said text. There is a tap gesture on each image in the focused status row, but this is not advertised to the user. Now, the first image’s alt text is read as part of the non-focused, combined representation, and each image has its own alt text attributed in the focused representation. * Add Profile tab accessibility labels to indicate private/bot/muted/blocked accounts Previously, the icon did not have any accessible representation (an empty text string). * Add header trait to Profile “pinned post” * Use the Account.Field.name for the user input label * Replace spaces with commas in StatusRowView.combinedAccessibilityLabel
This commit is contained in:
parent
da0b92e13d
commit
9a6b2129b2
28 changed files with 887 additions and 36 deletions
|
@ -484,6 +484,7 @@
|
||||||
"status.show-full-post" = "Show full post";
|
"status.show-full-post" = "Show full post";
|
||||||
"status.summary.at-time" = " а ";
|
"status.summary.at-time" = " а ";
|
||||||
"status.summary.edited-time" = "Апошняе рэдагаванне:";
|
"status.summary.edited-time" = "Апошняе рэдагаванне:";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld павышаных";
|
"status.summary.n-boosts %lld" = "%lld павышаных";
|
||||||
"status.summary.n-favorites %lld" = "%lld улюбёных";
|
"status.summary.n-favorites %lld" = "%lld улюбёных";
|
||||||
"status.visibility.direct" = "Прыватны";
|
"status.visibility.direct" = "Прыватны";
|
||||||
|
@ -524,6 +525,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Дадаць уліковы запіс";
|
"accessibility.tabs.timeline.add-account" = "Дадаць уліковы запіс";
|
||||||
"accessibility.app-account.selector.accounts" = "Уліковыя запісы";
|
"accessibility.app-account.selector.accounts" = "Уліковыя запісы";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Дадатковая інфармацыя";
|
"report.comment.placeholder" = "Дадатковая інфармацыя";
|
||||||
|
|
|
@ -478,6 +478,7 @@
|
||||||
"status.show-full-post" = "Show full post";
|
"status.show-full-post" = "Show full post";
|
||||||
"status.summary.at-time" = " a les ";
|
"status.summary.at-time" = " a les ";
|
||||||
"status.summary.edited-time" = "Darrera edició: ";
|
"status.summary.edited-time" = "Darrera edició: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld impulsos";
|
"status.summary.n-boosts %lld" = "%lld impulsos";
|
||||||
"status.summary.n-favorites %lld" = "%lld preferits";
|
"status.summary.n-favorites %lld" = "%lld preferits";
|
||||||
"status.visibility.direct" = "Privat";
|
"status.visibility.direct" = "Privat";
|
||||||
|
@ -518,6 +519,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Add account";
|
"accessibility.tabs.timeline.add-account" = "Add account";
|
||||||
"accessibility.app-account.selector.accounts" = "Accounts";
|
"accessibility.app-account.selector.accounts" = "Accounts";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Additional Info";
|
"report.comment.placeholder" = "Additional Info";
|
||||||
|
|
|
@ -474,6 +474,7 @@
|
||||||
"status.show-more" = "Mehr anzeigen";
|
"status.show-more" = "Mehr anzeigen";
|
||||||
"status.show-full-post" = "Ganzen Beitrag anzeigen";
|
"status.show-full-post" = "Ganzen Beitrag anzeigen";
|
||||||
"status.summary.at-time" = " um ";
|
"status.summary.at-time" = " um ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld Boosts";
|
"status.summary.n-boosts %lld" = "%lld Boosts";
|
||||||
"status.summary.n-favorites %lld" = "%lld Favoriten";
|
"status.summary.n-favorites %lld" = "%lld Favoriten";
|
||||||
"status.summary.edited-time" = "Zuletzt bearbeitet: ";
|
"status.summary.edited-time" = "Zuletzt bearbeitet: ";
|
||||||
|
@ -514,6 +515,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Ändert das Beitragspublikum.";
|
"accessibility.editor.privacy.hint" = "Ändert das Beitragspublikum.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Konto hinzufügen";
|
"accessibility.tabs.timeline.add-account" = "Konto hinzufügen";
|
||||||
"accessibility.app-account.selector.accounts" = "Konten";
|
"accessibility.app-account.selector.accounts" = "Konten";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Zusätzliche Informationen";
|
"report.comment.placeholder" = "Zusätzliche Informationen";
|
||||||
|
|
|
@ -479,6 +479,7 @@
|
||||||
"status.show-full-post" = "Show full post";
|
"status.show-full-post" = "Show full post";
|
||||||
"status.summary.at-time" = " at ";
|
"status.summary.at-time" = " at ";
|
||||||
"status.summary.edited-time" = "Last edited: ";
|
"status.summary.edited-time" = "Last edited: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld boosts";
|
"status.summary.n-boosts %lld" = "%lld boosts";
|
||||||
"status.summary.n-favorites %lld" = "%lld favourites";
|
"status.summary.n-favorites %lld" = "%lld favourites";
|
||||||
"status.visibility.direct" = "Private";
|
"status.visibility.direct" = "Private";
|
||||||
|
@ -521,6 +522,37 @@
|
||||||
"accessibility.editor.privacy.label" = "Visibility";
|
"accessibility.editor.privacy.label" = "Visibility";
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.app-account.selector.accounts" = "Accounts";
|
"accessibility.app-account.selector.accounts" = "Accounts";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Additional Info";
|
"report.comment.placeholder" = "Additional Info";
|
||||||
|
|
|
@ -480,6 +480,7 @@
|
||||||
"status.show-full-post" = "Show full post";
|
"status.show-full-post" = "Show full post";
|
||||||
"status.summary.at-time" = " at ";
|
"status.summary.at-time" = " at ";
|
||||||
"status.summary.edited-time" = "Last edited: ";
|
"status.summary.edited-time" = "Last edited: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld boosts";
|
"status.summary.n-boosts %lld" = "%lld boosts";
|
||||||
"status.summary.n-favorites %lld" = "%lld favorites";
|
"status.summary.n-favorites %lld" = "%lld favorites";
|
||||||
"status.visibility.direct" = "Private";
|
"status.visibility.direct" = "Private";
|
||||||
|
@ -520,6 +521,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Add Account";
|
"accessibility.tabs.timeline.add-account" = "Add Account";
|
||||||
"accessibility.app-account.selector.accounts" = "Accounts";
|
"accessibility.app-account.selector.accounts" = "Accounts";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Additional Info";
|
"report.comment.placeholder" = "Additional Info";
|
||||||
|
|
|
@ -480,6 +480,7 @@
|
||||||
"status.show-full-post" = "Mostrar publicación completa";
|
"status.show-full-post" = "Mostrar publicación completa";
|
||||||
"status.summary.at-time" = " a las ";
|
"status.summary.at-time" = " a las ";
|
||||||
"status.summary.edited-time" = "Última edición: ";
|
"status.summary.edited-time" = "Última edición: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld retoots";
|
"status.summary.n-boosts %lld" = "%lld retoots";
|
||||||
"status.summary.n-favorites %lld" = "%lld favoritos";
|
"status.summary.n-favorites %lld" = "%lld favoritos";
|
||||||
"status.visibility.direct" = "Privado";
|
"status.visibility.direct" = "Privado";
|
||||||
|
@ -520,6 +521,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Añadir cuenta";
|
"accessibility.tabs.timeline.add-account" = "Añadir cuenta";
|
||||||
"accessibility.app-account.selector.accounts" = "Cuentas";
|
"accessibility.app-account.selector.accounts" = "Cuentas";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Información adicional";
|
"report.comment.placeholder" = "Información adicional";
|
||||||
|
|
|
@ -472,6 +472,7 @@
|
||||||
"status.show-full-post" = "Erakutsi osorik";
|
"status.show-full-post" = "Erakutsi osorik";
|
||||||
"status.summary.at-time" = " · ";
|
"status.summary.at-time" = " · ";
|
||||||
"status.summary.edited-time" = "Azkenekoz editatua: ";
|
"status.summary.edited-time" = "Azkenekoz editatua: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.visibility.direct" = "Aipatutakoak";
|
"status.visibility.direct" = "Aipatutakoak";
|
||||||
"status.visibility.follower" = "Jarraitzaileak";
|
"status.visibility.follower" = "Jarraitzaileak";
|
||||||
"status.visibility.public" = "Publikoa";
|
"status.visibility.public" = "Publikoa";
|
||||||
|
@ -509,6 +510,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Nork ikus dezakeen aldatzen du.";
|
"accessibility.editor.privacy.hint" = "Nork ikus dezakeen aldatzen du.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Gehitu kontua";
|
"accessibility.tabs.timeline.add-account" = "Gehitu kontua";
|
||||||
"accessibility.app-account.selector.accounts" = "Kontuak";
|
"accessibility.app-account.selector.accounts" = "Kontuak";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Informazio gehigarria";
|
"report.comment.placeholder" = "Informazio gehigarria";
|
||||||
|
|
|
@ -475,6 +475,7 @@
|
||||||
"status.show-full-post" = "Show full post";
|
"status.show-full-post" = "Show full post";
|
||||||
"status.summary.at-time" = " à ";
|
"status.summary.at-time" = " à ";
|
||||||
"status.summary.edited-time" = "Dernière modification : ";
|
"status.summary.edited-time" = "Dernière modification : ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld boosts";
|
"status.summary.n-boosts %lld" = "%lld boosts";
|
||||||
"status.summary.n-favorites %lld" = "%lld favoris";
|
"status.summary.n-favorites %lld" = "%lld favoris";
|
||||||
"status.visibility.direct" = "Privé";
|
"status.visibility.direct" = "Privé";
|
||||||
|
@ -515,6 +516,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Ajouter un compte>";
|
"accessibility.tabs.timeline.add-account" = "Ajouter un compte>";
|
||||||
"accessibility.app-account.selector.accounts" = "Comptes";
|
"accessibility.app-account.selector.accounts" = "Comptes";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Information supplémentaire";
|
"report.comment.placeholder" = "Information supplémentaire";
|
||||||
|
|
|
@ -479,6 +479,7 @@
|
||||||
"status.show-full-post" = "Mostra il post completo";
|
"status.show-full-post" = "Mostra il post completo";
|
||||||
"status.summary.at-time" = " alle ";
|
"status.summary.at-time" = " alle ";
|
||||||
"status.summary.edited-time" = "Ultima modifica: ";
|
"status.summary.edited-time" = "Ultima modifica: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld condivisioni";
|
"status.summary.n-boosts %lld" = "%lld condivisioni";
|
||||||
"status.summary.n-favorites %lld" = "%lld preferiti";
|
"status.summary.n-favorites %lld" = "%lld preferiti";
|
||||||
"status.visibility.direct" = "Privato";
|
"status.visibility.direct" = "Privato";
|
||||||
|
@ -519,6 +520,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Aggiungi account";
|
"accessibility.tabs.timeline.add-account" = "Aggiungi account";
|
||||||
"accessibility.app-account.selector.accounts" = "Account";
|
"accessibility.app-account.selector.accounts" = "Account";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Informazioni aggiuntive";
|
"report.comment.placeholder" = "Informazioni aggiuntive";
|
||||||
|
|
|
@ -479,6 +479,7 @@
|
||||||
"status.show-full-post" = "投稿をすべて表示";
|
"status.show-full-post" = "投稿をすべて表示";
|
||||||
"status.summary.at-time" = " ";
|
"status.summary.at-time" = " ";
|
||||||
"status.summary.edited-time" = "最新編集日: ";
|
"status.summary.edited-time" = "最新編集日: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld ブースト";
|
"status.summary.n-boosts %lld" = "%lld ブースト";
|
||||||
"status.summary.n-favorites %lld" = "%lld お気に入り";
|
"status.summary.n-favorites %lld" = "%lld お気に入り";
|
||||||
"status.visibility.direct" = "指定された相手のみ";
|
"status.visibility.direct" = "指定された相手のみ";
|
||||||
|
@ -519,6 +520,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "投稿対象者を変更します";
|
"accessibility.editor.privacy.hint" = "投稿対象者を変更します";
|
||||||
"accessibility.tabs.timeline.add-account" = "アカウントを追加";
|
"accessibility.tabs.timeline.add-account" = "アカウントを追加";
|
||||||
"accessibility.app-account.selector.accounts" = "アカウント";
|
"accessibility.app-account.selector.accounts" = "アカウント";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "追加情報";
|
"report.comment.placeholder" = "追加情報";
|
||||||
|
|
|
@ -481,6 +481,7 @@
|
||||||
"status.show-full-post" = "전체 내용 보기";
|
"status.show-full-post" = "전체 내용 보기";
|
||||||
"status.summary.at-time" = " ";
|
"status.summary.at-time" = " ";
|
||||||
"status.summary.edited-time" = "마지막 수정: ";
|
"status.summary.edited-time" = "마지막 수정: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "부스트 %lld회";
|
"status.summary.n-boosts %lld" = "부스트 %lld회";
|
||||||
"status.summary.n-favorites %lld" = "좋아요 %lld회";
|
"status.summary.n-favorites %lld" = "좋아요 %lld회";
|
||||||
"status.visibility.direct" = "언급된 사용자만";
|
"status.visibility.direct" = "언급된 사용자만";
|
||||||
|
@ -521,6 +522,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "계정 추가";
|
"accessibility.tabs.timeline.add-account" = "계정 추가";
|
||||||
"accessibility.app-account.selector.accounts" = "계정";
|
"accessibility.app-account.selector.accounts" = "계정";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "추가 정보";
|
"report.comment.placeholder" = "추가 정보";
|
||||||
|
|
|
@ -479,6 +479,7 @@
|
||||||
"status.show-full-post" = "Show full post";
|
"status.show-full-post" = "Show full post";
|
||||||
"status.summary.at-time" = "kl ";
|
"status.summary.at-time" = "kl ";
|
||||||
"status.summary.edited-time" = "Sist redigert: ";
|
"status.summary.edited-time" = "Sist redigert: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld forsterkninger";
|
"status.summary.n-boosts %lld" = "%lld forsterkninger";
|
||||||
"status.summary.n-favorites %lld" = "%lld favoritter";
|
"status.summary.n-favorites %lld" = "%lld favoritter";
|
||||||
"status.visibility.direct" = "Privat";
|
"status.visibility.direct" = "Privat";
|
||||||
|
@ -519,6 +520,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Add account";
|
"accessibility.tabs.timeline.add-account" = "Add account";
|
||||||
"accessibility.app-account.selector.accounts" = "Accounts";
|
"accessibility.app-account.selector.accounts" = "Accounts";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Additional Info";
|
"report.comment.placeholder" = "Additional Info";
|
||||||
|
|
|
@ -473,6 +473,7 @@
|
||||||
"status.show-full-post" = "Toon volledige post";
|
"status.show-full-post" = "Toon volledige post";
|
||||||
"status.summary.at-time" = " om ";
|
"status.summary.at-time" = " om ";
|
||||||
"status.summary.edited-time" = "Laatst gewijzigd: ";
|
"status.summary.edited-time" = "Laatst gewijzigd: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld boosts";
|
"status.summary.n-boosts %lld" = "%lld boosts";
|
||||||
"status.summary.n-favorites %lld" = "%lld favorieten";
|
"status.summary.n-favorites %lld" = "%lld favorieten";
|
||||||
"status.visibility.direct" = "Direct bericht";
|
"status.visibility.direct" = "Direct bericht";
|
||||||
|
@ -516,6 +517,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Voeg account toe";
|
"accessibility.tabs.timeline.add-account" = "Voeg account toe";
|
||||||
"accessibility.app-account.selector.accounts" = "Accounts";
|
"accessibility.app-account.selector.accounts" = "Accounts";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Aanvullende informatie";
|
"report.comment.placeholder" = "Aanvullende informatie";
|
||||||
|
|
|
@ -473,6 +473,7 @@
|
||||||
"status.show-full-post" = "Pokaż cały post";
|
"status.show-full-post" = "Pokaż cały post";
|
||||||
"status.summary.at-time" = " o ";
|
"status.summary.at-time" = " o ";
|
||||||
"status.summary.edited-time" = "Ostatnia edycja: ";
|
"status.summary.edited-time" = "Ostatnia edycja: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.visibility.direct" = "Post bezpośredni";
|
"status.visibility.direct" = "Post bezpośredni";
|
||||||
"status.visibility.follower" = "Tylko obserwujący";
|
"status.visibility.follower" = "Tylko obserwujący";
|
||||||
"status.visibility.public" = "Publiczny";
|
"status.visibility.public" = "Publiczny";
|
||||||
|
@ -511,6 +512,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Zmienia odbiorców postu.";
|
"accessibility.editor.privacy.hint" = "Zmienia odbiorców postu.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Dodaj konto";
|
"accessibility.tabs.timeline.add-account" = "Dodaj konto";
|
||||||
"accessibility.app-account.selector.accounts" = "Konta";
|
"accessibility.app-account.selector.accounts" = "Konta";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Informacja dodatkowa";
|
"report.comment.placeholder" = "Informacja dodatkowa";
|
||||||
|
|
|
@ -479,6 +479,7 @@
|
||||||
"status.show-full-post" = "Show full post";
|
"status.show-full-post" = "Show full post";
|
||||||
"status.summary.at-time" = " as ";
|
"status.summary.at-time" = " as ";
|
||||||
"status.summary.edited-time" = "Última edição: ";
|
"status.summary.edited-time" = "Última edição: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld boosts";
|
"status.summary.n-boosts %lld" = "%lld boosts";
|
||||||
"status.summary.n-favorites %lld" = "%lld favoritos";
|
"status.summary.n-favorites %lld" = "%lld favoritos";
|
||||||
"status.visibility.direct" = "Privado";
|
"status.visibility.direct" = "Privado";
|
||||||
|
@ -519,6 +520,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Adicionar conta";
|
"accessibility.tabs.timeline.add-account" = "Adicionar conta";
|
||||||
"accessibility.app-account.selector.accounts" = "Contas";
|
"accessibility.app-account.selector.accounts" = "Contas";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Informação Adicional";
|
"report.comment.placeholder" = "Informação Adicional";
|
||||||
|
|
|
@ -475,6 +475,7 @@
|
||||||
"status.show-full-post" = "Show full post";
|
"status.show-full-post" = "Show full post";
|
||||||
"status.summary.at-time" = " de ";
|
"status.summary.at-time" = " de ";
|
||||||
"status.summary.edited-time" = "Son düzenleme: ";
|
"status.summary.edited-time" = "Son düzenleme: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld yükseltmeler";
|
"status.summary.n-boosts %lld" = "%lld yükseltmeler";
|
||||||
"status.summary.n-favorites %lld" = "%lld favoriler";
|
"status.summary.n-favorites %lld" = "%lld favoriler";
|
||||||
"status.visibility.direct" = "Gizli";
|
"status.visibility.direct" = "Gizli";
|
||||||
|
@ -519,6 +520,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Add account";
|
"accessibility.tabs.timeline.add-account" = "Add account";
|
||||||
"accessibility.app-account.selector.accounts" = "Accounts";
|
"accessibility.app-account.selector.accounts" = "Accounts";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Additional Info";
|
"report.comment.placeholder" = "Additional Info";
|
||||||
|
|
|
@ -480,6 +480,7 @@
|
||||||
"status.show-full-post" = "Показати весь допис";
|
"status.show-full-post" = "Показати весь допис";
|
||||||
"status.summary.at-time" = " о ";
|
"status.summary.at-time" = " о ";
|
||||||
"status.summary.edited-time" = "Востаннє змінено: ";
|
"status.summary.edited-time" = "Востаннє змінено: ";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld поширень";
|
"status.summary.n-boosts %lld" = "%lld поширень";
|
||||||
"status.summary.n-favorites %lld" = "%lld вподобань";
|
"status.summary.n-favorites %lld" = "%lld вподобань";
|
||||||
"status.visibility.direct" = "Особисте";
|
"status.visibility.direct" = "Особисте";
|
||||||
|
@ -520,6 +521,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "Додати профіль";
|
"accessibility.tabs.timeline.add-account" = "Додати профіль";
|
||||||
"accessibility.app-account.selector.accounts" = "Профілі";
|
"accessibility.app-account.selector.accounts" = "Профілі";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "Додаткова інформація";
|
"report.comment.placeholder" = "Додаткова інформація";
|
||||||
|
|
|
@ -478,6 +478,7 @@
|
||||||
"status.show-full-post" = "显示全文";
|
"status.show-full-post" = "显示全文";
|
||||||
"status.summary.at-time" = " 在 ";
|
"status.summary.at-time" = " 在 ";
|
||||||
"status.summary.edited-time" = "上次编辑:";
|
"status.summary.edited-time" = "上次编辑:";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld 转发";
|
"status.summary.n-boosts %lld" = "%lld 转发";
|
||||||
"status.summary.n-favorites %lld" = "%lld 喜欢";
|
"status.summary.n-favorites %lld" = "%lld 喜欢";
|
||||||
"status.visibility.direct" = "私密";
|
"status.visibility.direct" = "私密";
|
||||||
|
@ -521,6 +522,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "更改嘟文可见度。";
|
"accessibility.editor.privacy.hint" = "更改嘟文可见度。";
|
||||||
"accessibility.tabs.timeline.add-account" = "添加账户";
|
"accessibility.tabs.timeline.add-account" = "添加账户";
|
||||||
"accessibility.app-account.selector.accounts" = "账户";
|
"accessibility.app-account.selector.accounts" = "账户";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "附加信息";
|
"report.comment.placeholder" = "附加信息";
|
||||||
|
|
|
@ -479,6 +479,7 @@
|
||||||
"status.show-full-post" = "顯示全文";
|
"status.show-full-post" = "顯示全文";
|
||||||
"status.summary.at-time" = " 於 ";
|
"status.summary.at-time" = " 於 ";
|
||||||
"status.summary.edited-time" = "上次編輯:";
|
"status.summary.edited-time" = "上次編輯:";
|
||||||
|
"status.summary.n-replies %lld" = "%lld replies";
|
||||||
"status.summary.n-boosts %lld" = "%lld 轉嘟";
|
"status.summary.n-boosts %lld" = "%lld 轉嘟";
|
||||||
"status.summary.n-favorites %lld" = "%lld 最愛";
|
"status.summary.n-favorites %lld" = "%lld 最愛";
|
||||||
"status.visibility.direct" = "私訊";
|
"status.visibility.direct" = "私訊";
|
||||||
|
@ -519,6 +520,37 @@
|
||||||
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
"accessibility.editor.privacy.hint" = "Changes post audience.";
|
||||||
"accessibility.tabs.timeline.add-account" = "新增帳號";
|
"accessibility.tabs.timeline.add-account" = "新增帳號";
|
||||||
"accessibility.app-account.selector.accounts" = "帳號";
|
"accessibility.app-account.selector.accounts" = "帳號";
|
||||||
|
"accessibility.tabs.profile.options.label" = "Options";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel1" = "Settings";
|
||||||
|
"accessibility.tabs.profile.options.inputLabel2" = "More";
|
||||||
|
"accessibility.tabs.profile.user-avatar.label" = "Profile photo";
|
||||||
|
"accessibility.tabs.profile.user-avatar.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.user-avatar.supporter.label" = "Supporter";
|
||||||
|
"accessibility.tabs.profile.user.account-bot.label" = "Bot account";
|
||||||
|
"accessibility.tabs.profile.user.account-blocked.label" = "Blocked";
|
||||||
|
"accessibility.tabs.profile.user.account-muted.label" = "Muted";
|
||||||
|
"accessibility.tabs.profile.user.account-private.label" = "Private account";
|
||||||
|
"accessibility.tabs.profile.header-image.label" = "Header image";
|
||||||
|
"accessibility.tabs.profile.header-image.hint" = "Displays a larger version.";
|
||||||
|
"accessibility.tabs.profile.post-count.hint" = "Scrolls to list.";
|
||||||
|
"accessibility.tabs.profile.following-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.follower-count.hint" = "Navigates to list.";
|
||||||
|
"accessibility.tabs.profile.picker.statuses" = "Posts";
|
||||||
|
"accessibility.tabs.profile.picker.favorites" = "Favorites";
|
||||||
|
"accessibility.tabs.profile.picker.bookmarks" = "Bookmarks";
|
||||||
|
"accessibility.tabs.profile.picker.followed-tags" = "Tags";
|
||||||
|
"accessibility.tabs.profile.picker.posts-and-replies" = "Posts and replies";
|
||||||
|
"accessibility.tabs.profile.picker.media" = "Media";
|
||||||
|
"accessibility.tabs.profile.picker.lists" = "Lists";
|
||||||
|
"accessibility.tabs.profile.user-notifications.label" = "Receive notifications";
|
||||||
|
"accessibility.tabs.profile.user-reblogs.label" = "Display boosts";
|
||||||
|
"accessibility.tabs.profile.fields.verified.label" = "Verified";
|
||||||
|
"accessibility.tabs.profile.fields.container.label" = "User-defined fields";
|
||||||
|
"accessibility.status.spoiler-full-content" = "Full Content";
|
||||||
|
"accessibility.status.a-boosted-b-%@-%@" = "%@ boosted %@";
|
||||||
|
"accessibility.status.a-replied-to-%@" = "%@ replied to";
|
||||||
|
"accessibility.image.alt-text-%@" = "Image alt text: %@";
|
||||||
|
"accessibility.image.alt-text-more.label" = "More alt text available";
|
||||||
|
|
||||||
// MARK: Report
|
// MARK: Report
|
||||||
"report.comment.placeholder" = "附加資訊";
|
"report.comment.placeholder" = "附加資訊";
|
||||||
|
|
|
@ -73,7 +73,6 @@ struct AccountDetailHeaderView: View {
|
||||||
}
|
}
|
||||||
.background(theme.secondaryBackgroundColor)
|
.background(theme.secondaryBackgroundColor)
|
||||||
.frame(height: Constants.headerHeight)
|
.frame(height: Constants.headerHeight)
|
||||||
.contentShape(Rectangle())
|
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
guard account.haveHeader else {
|
guard account.haveHeader else {
|
||||||
return
|
return
|
||||||
|
@ -82,20 +81,18 @@ struct AccountDetailHeaderView: View {
|
||||||
await quickLook.prepareFor(urls: [account.header], selectedURL: account.header)
|
await quickLook.prepareFor(urls: [account.header], selectedURL: account.header)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.accessibilityElement(children: .combine)
|
||||||
|
.accessibilityAddTraits([.isImage, .isButton])
|
||||||
|
.accessibilityLabel("accessibility.tabs.profile.header-image.label")
|
||||||
|
.accessibilityHint("accessibility.tabs.profile.header-image.hint")
|
||||||
|
.accessibilityHidden(account.haveHeader == false)
|
||||||
}
|
}
|
||||||
|
|
||||||
private var accountAvatarView: some View {
|
private var accountAvatarView: some View {
|
||||||
HStack {
|
HStack {
|
||||||
ZStack(alignment: .topTrailing) {
|
ZStack(alignment: .topTrailing) {
|
||||||
AvatarView(url: account.avatar, size: .account)
|
AvatarView(url: account.avatar, size: .account)
|
||||||
.onTapGesture {
|
.accessibilityLabel("accessibility.tabs.profile.user-avatar.label")
|
||||||
guard account.haveAvatar else {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
Task {
|
|
||||||
await quickLook.prepareFor(urls: [account.avatar], selectedURL: account.avatar)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if viewModel.isCurrentUser, isSupporter {
|
if viewModel.isCurrentUser, isSupporter {
|
||||||
Image(systemName: "checkmark.seal.fill")
|
Image(systemName: "checkmark.seal.fill")
|
||||||
.resizable()
|
.resizable()
|
||||||
|
@ -103,8 +100,23 @@ struct AccountDetailHeaderView: View {
|
||||||
.foregroundColor(theme.tintColor)
|
.foregroundColor(theme.tintColor)
|
||||||
.offset(x: theme.avatarShape == .circle ? 0 : 10,
|
.offset(x: theme.avatarShape == .circle ? 0 : 10,
|
||||||
y: theme.avatarShape == .circle ? 0 : -10)
|
y: theme.avatarShape == .circle ? 0 : -10)
|
||||||
|
.accessibilityRemoveTraits(.isSelected)
|
||||||
|
.accessibilityLabel("accessibility.tabs.profile.user-avatar.supporter.label")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.onTapGesture {
|
||||||
|
guard account.haveAvatar else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
Task {
|
||||||
|
await quickLook.prepareFor(urls: [account.avatar], selectedURL: account.avatar)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.accessibilityElement(children: .combine)
|
||||||
|
.accessibilityAddTraits([.isImage, .isButton])
|
||||||
|
.accessibilityHint("accessibility.tabs.profile.user-avatar.hint")
|
||||||
|
.accessibilityHidden(account.haveAvatar == false)
|
||||||
|
|
||||||
Spacer()
|
Spacer()
|
||||||
Group {
|
Group {
|
||||||
Button {
|
Button {
|
||||||
|
@ -114,6 +126,7 @@ struct AccountDetailHeaderView: View {
|
||||||
} label: {
|
} label: {
|
||||||
makeCustomInfoLabel(title: "account.posts", count: account.statusesCount)
|
makeCustomInfoLabel(title: "account.posts", count: account.statusesCount)
|
||||||
}
|
}
|
||||||
|
.accessibilityHint("accessibility.tabs.profile.post-count.hint")
|
||||||
.buttonStyle(.borderless)
|
.buttonStyle(.borderless)
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
|
@ -121,6 +134,7 @@ struct AccountDetailHeaderView: View {
|
||||||
} label: {
|
} label: {
|
||||||
makeCustomInfoLabel(title: "account.following", count: account.followingCount)
|
makeCustomInfoLabel(title: "account.following", count: account.followingCount)
|
||||||
}
|
}
|
||||||
|
.accessibilityHint("accessibility.tabs.profile.following-count.hint")
|
||||||
.buttonStyle(.borderless)
|
.buttonStyle(.borderless)
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
|
@ -132,6 +146,7 @@ struct AccountDetailHeaderView: View {
|
||||||
needsBadge: currentAccount.account?.id == account.id && !currentAccount.followRequests.isEmpty
|
needsBadge: currentAccount.account?.id == account.id && !currentAccount.followRequests.isEmpty
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
.accessibilityHint("accessibility.tabs.profile.follower-count.hint")
|
||||||
.buttonStyle(.borderless)
|
.buttonStyle(.borderless)
|
||||||
|
|
||||||
}.offset(y: 20)
|
}.offset(y: 20)
|
||||||
|
@ -149,29 +164,41 @@ struct AccountDetailHeaderView: View {
|
||||||
.foregroundColor(theme.labelColor)
|
.foregroundColor(theme.labelColor)
|
||||||
.emojiSize(Font.scaledHeadlineFont.emojiSize)
|
.emojiSize(Font.scaledHeadlineFont.emojiSize)
|
||||||
.emojiBaselineOffset(Font.scaledHeadlineFont.emojiBaselineOffset)
|
.emojiBaselineOffset(Font.scaledHeadlineFont.emojiBaselineOffset)
|
||||||
|
.accessibilityAddTraits(.isHeader)
|
||||||
|
|
||||||
|
// The views here are wrapped in ZStacks as a Text(Image) does not provide an `accessibilityLabel`.
|
||||||
if account.bot {
|
if account.bot {
|
||||||
Text(Image(systemName: "poweroutlet.type.b.fill"))
|
ZStack {
|
||||||
.font(.footnote)
|
Text(Image(systemName: "poweroutlet.type.b.fill"))
|
||||||
|
.font(.footnote)
|
||||||
|
}.accessibilityLabel("accessibility.tabs.profile.user.account-bot.label")
|
||||||
}
|
}
|
||||||
if account.locked {
|
if account.locked {
|
||||||
Text(Image(systemName: "lock.fill"))
|
ZStack {
|
||||||
.font(.footnote)
|
Text(Image(systemName: "lock.fill"))
|
||||||
|
.font(.footnote)
|
||||||
|
}.accessibilityLabel("accessibility.tabs.profile.user.account-private.label")
|
||||||
}
|
}
|
||||||
if viewModel.relationship?.blocking == true {
|
if viewModel.relationship?.blocking == true {
|
||||||
Text(Image(systemName: "person.crop.circle.badge.xmark.fill"))
|
ZStack {
|
||||||
.font(.footnote)
|
Text(Image(systemName: "person.crop.circle.badge.xmark.fill"))
|
||||||
|
.font(.footnote)
|
||||||
|
}.accessibilityLabel("accessibility.tabs.profile.user.account-blocked.label")
|
||||||
}
|
}
|
||||||
if viewModel.relationship?.muting == true {
|
if viewModel.relationship?.muting == true {
|
||||||
Text(Image(systemName: "speaker.slash.fill"))
|
ZStack {
|
||||||
.font(.footnote)
|
Text(Image(systemName: "speaker.slash.fill"))
|
||||||
|
.font(.footnote)
|
||||||
|
}.accessibilityLabel("accessibility.tabs.profile.user.account-muted.label")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Text("@\(account.acct)")
|
Text("@\(account.acct)")
|
||||||
.font(.scaledCallout)
|
.font(.scaledCallout)
|
||||||
.foregroundColor(.gray)
|
.foregroundColor(.gray)
|
||||||
.textSelection(.enabled)
|
.textSelection(.enabled)
|
||||||
|
.accessibilityRespondsToUserInteraction(false)
|
||||||
joinedAtView
|
joinedAtView
|
||||||
}
|
}.accessibilityElement(children: .contain)
|
||||||
Spacer()
|
Spacer()
|
||||||
if let relationship = viewModel.relationship, !viewModel.isCurrentUser {
|
if let relationship = viewModel.relationship, !viewModel.isCurrentUser {
|
||||||
HStack {
|
HStack {
|
||||||
|
@ -201,6 +228,7 @@ struct AccountDetailHeaderView: View {
|
||||||
.environment(\.openURL, OpenURLAction { url in
|
.environment(\.openURL, OpenURLAction { url in
|
||||||
routerPath.handle(url: url)
|
routerPath.handle(url: url)
|
||||||
})
|
})
|
||||||
|
.accessibilityRespondsToUserInteraction(false)
|
||||||
|
|
||||||
if let translation = viewModel.translation, !viewModel.isLoadingTranslation {
|
if let translation = viewModel.translation, !viewModel.isLoadingTranslation {
|
||||||
GroupBox {
|
GroupBox {
|
||||||
|
@ -247,6 +275,9 @@ struct AccountDetailHeaderView: View {
|
||||||
.font(.scaledFootnote)
|
.font(.scaledFootnote)
|
||||||
.foregroundColor(.gray)
|
.foregroundColor(.gray)
|
||||||
}
|
}
|
||||||
|
.accessibilityElement(children: .ignore)
|
||||||
|
.accessibilityLabel(title)
|
||||||
|
.accessibilityValue("\(count)")
|
||||||
}
|
}
|
||||||
|
|
||||||
@ViewBuilder
|
@ViewBuilder
|
||||||
|
@ -254,12 +285,14 @@ struct AccountDetailHeaderView: View {
|
||||||
if let joinedAt = viewModel.account?.createdAt.asDate {
|
if let joinedAt = viewModel.account?.createdAt.asDate {
|
||||||
HStack(spacing: 4) {
|
HStack(spacing: 4) {
|
||||||
Image(systemName: "calendar")
|
Image(systemName: "calendar")
|
||||||
|
.accessibilityHidden(true)
|
||||||
Text("account.joined")
|
Text("account.joined")
|
||||||
Text(joinedAt, style: .date)
|
Text(joinedAt, style: .date)
|
||||||
}
|
}
|
||||||
.foregroundColor(.gray)
|
.foregroundColor(.gray)
|
||||||
.font(.footnote)
|
.font(.footnote)
|
||||||
.padding(.top, 6)
|
.padding(.top, 6)
|
||||||
|
.accessibilityElement(children: .combine)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -293,6 +326,7 @@ struct AccountDetailHeaderView: View {
|
||||||
if field.verifiedAt != nil {
|
if field.verifiedAt != nil {
|
||||||
Image(systemName: "checkmark.seal")
|
Image(systemName: "checkmark.seal")
|
||||||
.foregroundColor(Color.green.opacity(0.80))
|
.foregroundColor(Color.green.opacity(0.80))
|
||||||
|
.accessibilityHidden(true)
|
||||||
}
|
}
|
||||||
EmojiTextApp(field.value, emojis: viewModel.account?.emojis ?? [])
|
EmojiTextApp(field.value, emojis: viewModel.account?.emojis ?? [])
|
||||||
.emojiSize(Font.scaledBodyFont.emojiSize)
|
.emojiSize(Font.scaledBodyFont.emojiSize)
|
||||||
|
@ -301,6 +335,7 @@ struct AccountDetailHeaderView: View {
|
||||||
.environment(\.openURL, OpenURLAction { url in
|
.environment(\.openURL, OpenURLAction { url in
|
||||||
routerPath.handle(url: url)
|
routerPath.handle(url: url)
|
||||||
})
|
})
|
||||||
|
.accessibilityValue(field.verifiedAt != nil ? "accessibility.tabs.profile.fields.verified.label" : "")
|
||||||
}
|
}
|
||||||
.font(.scaledBody)
|
.font(.scaledBody)
|
||||||
if viewModel.fields.last != field {
|
if viewModel.fields.last != field {
|
||||||
|
@ -310,9 +345,13 @@ struct AccountDetailHeaderView: View {
|
||||||
}
|
}
|
||||||
Spacer()
|
Spacer()
|
||||||
}
|
}
|
||||||
|
.accessibilityElement(children: .combine)
|
||||||
|
.modifier(ConditionalUserDefinedFieldAccessibilityActionModifier(field: field, routerPath: routerPath))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.padding(8)
|
.padding(8)
|
||||||
|
.accessibilityElement(children: .contain)
|
||||||
|
.accessibilityLabel("accessibility.tabs.profile.fields.container.label")
|
||||||
.background(theme.secondaryBackgroundColor)
|
.background(theme.secondaryBackgroundColor)
|
||||||
.cornerRadius(4)
|
.cornerRadius(4)
|
||||||
.overlay(
|
.overlay(
|
||||||
|
@ -323,6 +362,30 @@ struct AccountDetailHeaderView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// A ``ViewModifier`` that creates a attaches an accessibility action if the field value is a valid link
|
||||||
|
private struct ConditionalUserDefinedFieldAccessibilityActionModifier: ViewModifier {
|
||||||
|
|
||||||
|
let field: Account.Field
|
||||||
|
let routerPath: RouterPath
|
||||||
|
|
||||||
|
func body(content: Content) -> some View {
|
||||||
|
if let url = URL(string: field.value.asRawText), UIApplication.shared.canOpenURL(url) {
|
||||||
|
content
|
||||||
|
.accessibilityAction {
|
||||||
|
let _ = routerPath.handle(url: url)
|
||||||
|
}
|
||||||
|
// SwiftUI will automatically decorate this element with the link trait, so we remove the button trait manually.
|
||||||
|
// March 18th, 2023: The button trait is still re-applied…
|
||||||
|
.accessibilityRemoveTraits(.isButton)
|
||||||
|
.accessibilityInputLabels([field.name])
|
||||||
|
} else {
|
||||||
|
content
|
||||||
|
// This element is not interactive; setting this property removes its button trait
|
||||||
|
.accessibilityRespondsToUserInteraction(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct AccountDetailHeaderView_Previews: PreviewProvider {
|
struct AccountDetailHeaderView_Previews: PreviewProvider {
|
||||||
static var previews: some View {
|
static var previews: some View {
|
||||||
AccountDetailHeaderView(viewModel: .init(account: .placeholder()),
|
AccountDetailHeaderView(viewModel: .init(account: .placeholder()),
|
||||||
|
|
|
@ -55,6 +55,7 @@ public struct AccountDetailView: View {
|
||||||
{ tab in
|
{ tab in
|
||||||
Image(systemName: tab.iconName)
|
Image(systemName: tab.iconName)
|
||||||
.tag(tab)
|
.tag(tab)
|
||||||
|
.accessibilityLabel(tab.accessibilityLabel)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.pickerStyle(.segmented)
|
.pickerStyle(.segmented)
|
||||||
|
@ -193,14 +194,18 @@ public struct AccountDetailView: View {
|
||||||
Text("account.detail.familiar-followers")
|
Text("account.detail.familiar-followers")
|
||||||
.font(.scaledHeadline)
|
.font(.scaledHeadline)
|
||||||
.padding(.leading, .layoutPadding)
|
.padding(.leading, .layoutPadding)
|
||||||
|
.accessibilityAddTraits(.isHeader)
|
||||||
ScrollView(.horizontal, showsIndicators: false) {
|
ScrollView(.horizontal, showsIndicators: false) {
|
||||||
LazyHStack(spacing: 0) {
|
LazyHStack(spacing: 0) {
|
||||||
ForEach(viewModel.familiarFollowers) { account in
|
ForEach(viewModel.familiarFollowers) { account in
|
||||||
AvatarView(url: account.avatar, size: .badge)
|
Button {
|
||||||
.onTapGesture {
|
routerPath.navigate(to: .accountDetailWithAccount(account: account))
|
||||||
routerPath.navigate(to: .accountDetailWithAccount(account: account))
|
} label: {
|
||||||
}
|
AvatarView(url: account.avatar, size: .badge)
|
||||||
.padding(.leading, -4)
|
.padding(.leading, -4)
|
||||||
|
.accessibilityLabel(account.safeDisplayName)
|
||||||
|
|
||||||
|
}.accessibilityAddTraits(.isImage)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.padding(.leading, .layoutPadding + 4)
|
.padding(.leading, .layoutPadding + 4)
|
||||||
|
@ -276,6 +281,7 @@ public struct AccountDetailView: View {
|
||||||
private var pinnedPostsView: some View {
|
private var pinnedPostsView: some View {
|
||||||
if !viewModel.pinned.isEmpty {
|
if !viewModel.pinned.isEmpty {
|
||||||
Label("account.post.pinned", systemImage: "pin.fill")
|
Label("account.post.pinned", systemImage: "pin.fill")
|
||||||
|
.accessibilityAddTraits(.isHeader)
|
||||||
.font(.scaledFootnote)
|
.font(.scaledFootnote)
|
||||||
.foregroundColor(.gray)
|
.foregroundColor(.gray)
|
||||||
.fontWeight(.semibold)
|
.fontWeight(.semibold)
|
||||||
|
@ -353,6 +359,12 @@ public struct AccountDetailView: View {
|
||||||
}
|
}
|
||||||
} label: {
|
} label: {
|
||||||
Image(systemName: "ellipsis.circle")
|
Image(systemName: "ellipsis.circle")
|
||||||
|
.accessibilityLabel("accessibility.tabs.profile.options.label")
|
||||||
|
.accessibilityInputLabels([
|
||||||
|
LocalizedStringKey("accessibility.tabs.profile.options.label"),
|
||||||
|
LocalizedStringKey("accessibility.tabs.profile.options.inputLabel1"),
|
||||||
|
LocalizedStringKey("accessibility.tabs.profile.options.inputLabel2")
|
||||||
|
])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,18 @@ class AccountDetailViewModel: ObservableObject, StatusesFetcher {
|
||||||
case .lists: return "list.bullet"
|
case .lists: return "list.bullet"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var accessibilityLabel: LocalizedStringKey {
|
||||||
|
switch self {
|
||||||
|
case .statuses: return "accessibility.tabs.profile.picker.statuses"
|
||||||
|
case .favorites: return "accessibility.tabs.profile.picker.favorites"
|
||||||
|
case .bookmarks: return "accessibility.tabs.profile.picker.bookmarks"
|
||||||
|
case .followedTags: return "accessibility.tabs.profile.picker.followed-tags"
|
||||||
|
case .postsAndReplies: return "accessibility.tabs.profile.picker.posts-and-replies"
|
||||||
|
case .media: return "accessibility.tabs.profile.picker.media"
|
||||||
|
case .lists: return "accessibility.tabs.profile.picker.lists"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
enum TabState {
|
enum TabState {
|
||||||
|
|
|
@ -97,6 +97,9 @@ public struct FollowButton: View {
|
||||||
Text("account.follow.requested")
|
Text("account.follow.requested")
|
||||||
} else {
|
} else {
|
||||||
Text(viewModel.relationship.following ? "account.follow.following" : "account.follow.follow")
|
Text(viewModel.relationship.following ? "account.follow.following" : "account.follow.follow")
|
||||||
|
.accessibilityRepresentation {
|
||||||
|
Toggle("account.follow.following", isOn: .constant(viewModel.relationship.following))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if viewModel.relationship.following,
|
if viewModel.relationship.following,
|
||||||
|
@ -109,6 +112,8 @@ public struct FollowButton: View {
|
||||||
}
|
}
|
||||||
} label: {
|
} label: {
|
||||||
Image(systemName: viewModel.relationship.notifying ? "bell.fill" : "bell")
|
Image(systemName: viewModel.relationship.notifying ? "bell.fill" : "bell")
|
||||||
|
}.accessibilityRepresentation {
|
||||||
|
Toggle("accessibility.tabs.profile.user-notifications.label", isOn: .constant(viewModel.relationship.notifying))
|
||||||
}
|
}
|
||||||
Button {
|
Button {
|
||||||
Task {
|
Task {
|
||||||
|
@ -116,6 +121,8 @@ public struct FollowButton: View {
|
||||||
}
|
}
|
||||||
} label: {
|
} label: {
|
||||||
Image(viewModel.relationship.showingReblogs ? "Rocket.Fill" : "Rocket")
|
Image(viewModel.relationship.showingReblogs ? "Rocket.Fill" : "Rocket")
|
||||||
|
}.accessibilityRepresentation {
|
||||||
|
Toggle("accessibility.tabs.profile.user-reblogs.label", isOn: .constant(viewModel.relationship.showingReblogs))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,10 +66,6 @@ public struct StatusRowView: View {
|
||||||
viewModel.navigateToDetail()
|
viewModel.navigateToDetail()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.accessibilityElement(children: viewModel.isFocused ? .contain : .combine)
|
|
||||||
.accessibilityAction {
|
|
||||||
viewModel.navigateToDetail()
|
|
||||||
}
|
|
||||||
if viewModel.showActions, viewModel.isFocused || theme.statusActionsDisplay != .none, !isInCaptureMode {
|
if viewModel.showActions, viewModel.isFocused || theme.statusActionsDisplay != .none, !isInCaptureMode {
|
||||||
StatusRowActionsView(viewModel: viewModel)
|
StatusRowActionsView(viewModel: viewModel)
|
||||||
.padding(.top, 8)
|
.padding(.top, 8)
|
||||||
|
@ -97,12 +93,14 @@ public struct StatusRowView: View {
|
||||||
contextMenu
|
contextMenu
|
||||||
}
|
}
|
||||||
.swipeActions(edge: .trailing) {
|
.swipeActions(edge: .trailing) {
|
||||||
if !isCompact {
|
// The actions associated with the swipes are exposed as custom accessibility actions and there is no way to remove them.
|
||||||
|
if !isCompact, UIAccessibility.isVoiceOverRunning == false {
|
||||||
StatusRowSwipeView(viewModel: viewModel, mode: .trailing)
|
StatusRowSwipeView(viewModel: viewModel, mode: .trailing)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.swipeActions(edge: .leading) {
|
.swipeActions(edge: .leading) {
|
||||||
if !isCompact {
|
// The actions associated with the swipes are exposed as custom accessibility actions and there is no way to remove them.
|
||||||
|
if !isCompact, UIAccessibility.isVoiceOverRunning == false {
|
||||||
StatusRowSwipeView(viewModel: viewModel, mode: .leading)
|
StatusRowSwipeView(viewModel: viewModel, mode: .leading)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -112,10 +110,12 @@ public struct StatusRowView: View {
|
||||||
bottom: 12,
|
bottom: 12,
|
||||||
trailing: .layoutPadding))
|
trailing: .layoutPadding))
|
||||||
.accessibilityElement(children: viewModel.isFocused ? .contain : .combine)
|
.accessibilityElement(children: viewModel.isFocused ? .contain : .combine)
|
||||||
|
.modifier(ConditionalAccessibilityLabelModifier(viewModel: viewModel, setLabel: viewModel.isFocused == false))
|
||||||
|
.accessibilityAction {
|
||||||
|
viewModel.navigateToDetail()
|
||||||
|
}
|
||||||
.accessibilityActions {
|
.accessibilityActions {
|
||||||
if UIAccessibility.isVoiceOverRunning {
|
accessibilityActions
|
||||||
accesibilityActions
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.background {
|
.background {
|
||||||
Color.clear
|
Color.clear
|
||||||
|
@ -153,7 +153,7 @@ public struct StatusRowView: View {
|
||||||
}
|
}
|
||||||
|
|
||||||
@ViewBuilder
|
@ViewBuilder
|
||||||
private var accesibilityActions: some View {
|
private var accessibilityActions: some View {
|
||||||
// Add the individual mentions as accessibility actions
|
// Add the individual mentions as accessibility actions
|
||||||
ForEach(viewModel.status.mentions, id: \.id) { mention in
|
ForEach(viewModel.status.mentions, id: \.id) { mention in
|
||||||
Button("@\(mention.username)") {
|
Button("@\(mention.username)") {
|
||||||
|
@ -170,8 +170,6 @@ public struct StatusRowView: View {
|
||||||
Button("@\(viewModel.status.account.username)") {
|
Button("@\(viewModel.status.account.username)") {
|
||||||
viewModel.routerPath.navigate(to: .accountDetail(id: viewModel.status.account.id))
|
viewModel.routerPath.navigate(to: .accountDetail(id: viewModel.status.account.id))
|
||||||
}
|
}
|
||||||
|
|
||||||
contextMenu
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private func makeFilterView(filter: Filter) -> some View {
|
private func makeFilterView(filter: Filter) -> some View {
|
||||||
|
@ -203,3 +201,98 @@ public struct StatusRowView: View {
|
||||||
.transition(.opacity)
|
.transition(.opacity)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// A ``ViewModifier`` that creates a suitable combined accessibility label for a `StatusRowView` that is not focused.
|
||||||
|
private struct ConditionalAccessibilityLabelModifier: ViewModifier {
|
||||||
|
|
||||||
|
@ObservedObject var viewModel: StatusRowViewModel
|
||||||
|
let setLabel: Bool
|
||||||
|
|
||||||
|
var hasSpoiler: Bool {
|
||||||
|
viewModel.displaySpoiler && viewModel.finalStatus.spoilerText.asRawText.isEmpty == false
|
||||||
|
}
|
||||||
|
|
||||||
|
var isReply: Bool {
|
||||||
|
if let accountId = viewModel.status.inReplyToAccountId, viewModel.status.mentions.contains(where: { $0.id == accountId }) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
var isBoost: Bool {
|
||||||
|
viewModel.status.reblog != nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func body(content: Content) -> some View {
|
||||||
|
if setLabel {
|
||||||
|
if hasSpoiler {
|
||||||
|
// Use the spoiler text in the label and place the full text as custom content
|
||||||
|
content
|
||||||
|
.accessibilityLabel(combinedAccessibilityLabel())
|
||||||
|
.accessibilityCustomContent(
|
||||||
|
LocalizedStringKey("accessibility.status.spoiler-full-content"),
|
||||||
|
viewModel.finalStatus.content.asRawText,
|
||||||
|
importance: .high
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
content
|
||||||
|
.accessibilityLabel(combinedAccessibilityLabel())
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
content
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func combinedAccessibilityLabel() -> Text {
|
||||||
|
userNamePreamble() +
|
||||||
|
Text(hasSpoiler
|
||||||
|
? viewModel.finalStatus.spoilerText.asRawText
|
||||||
|
: viewModel.finalStatus.content.asRawText
|
||||||
|
) + Text(", ") +
|
||||||
|
Text(hasSpoiler
|
||||||
|
? "status.editor.spoiler"
|
||||||
|
: ""
|
||||||
|
) + Text(", ") +
|
||||||
|
imageAltText() + Text(", ") +
|
||||||
|
Text(viewModel.finalStatus.createdAt.relativeFormatted) + Text(", ") +
|
||||||
|
Text("status.summary.n-replies \(viewModel.finalStatus.repliesCount)") + Text(", ") +
|
||||||
|
Text("status.summary.n-boosts \(viewModel.finalStatus.reblogsCount)") + Text(", ") +
|
||||||
|
Text("status.summary.n-favorites \(viewModel.finalStatus.favouritesCount)")
|
||||||
|
}
|
||||||
|
|
||||||
|
func userNamePreamble() -> Text {
|
||||||
|
switch (isReply, isBoost) {
|
||||||
|
case (true, false):
|
||||||
|
return Text("accessibility.status.a-replied-to-\(finalUserDisplayName())") + Text(" ")
|
||||||
|
case (_, true):
|
||||||
|
return Text("accessibility.status.a-boosted-b-\(userDisplayName())-\(finalUserDisplayName())") + Text(", ")
|
||||||
|
default:
|
||||||
|
return Text(userDisplayName()) + Text(", ")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func userDisplayName() -> String {
|
||||||
|
viewModel.status.account.displayNameWithoutEmojis.count < 4
|
||||||
|
? viewModel.status.account.safeDisplayName
|
||||||
|
: viewModel.status.account.displayNameWithoutEmojis
|
||||||
|
}
|
||||||
|
|
||||||
|
func finalUserDisplayName() -> String {
|
||||||
|
viewModel.finalStatus.account.displayNameWithoutEmojis.count < 4
|
||||||
|
? viewModel.finalStatus.account.safeDisplayName
|
||||||
|
: viewModel.finalStatus.account.displayNameWithoutEmojis
|
||||||
|
}
|
||||||
|
|
||||||
|
func imageAltText() -> Text {
|
||||||
|
let descriptions = viewModel.finalStatus.mediaAttachments
|
||||||
|
.compactMap(\.description)
|
||||||
|
|
||||||
|
if descriptions.count == 1 {
|
||||||
|
return Text("accessibility.image.alt-text-\(descriptions[0])")
|
||||||
|
} else if descriptions.count > 1 {
|
||||||
|
return Text("accessibility.image.alt-text-\(descriptions[0])") + Text(", ") + Text("accessibility.image.alt-text-more.label")
|
||||||
|
} else {
|
||||||
|
return Text("")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -50,6 +50,30 @@ struct StatusRowActionsView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func accessibilityLabel(dataController: StatusDataController, privateBoost: Bool = false) -> LocalizedStringKey {
|
||||||
|
switch self {
|
||||||
|
case .respond:
|
||||||
|
return "status.action.reply"
|
||||||
|
case .boost:
|
||||||
|
if dataController.isReblogged {
|
||||||
|
return "status.action.unboost"
|
||||||
|
}
|
||||||
|
return privateBoost
|
||||||
|
? "status.action.boost-to-followers"
|
||||||
|
: "status.action.boost"
|
||||||
|
case .favorite:
|
||||||
|
return dataController.isFavorited
|
||||||
|
? "status.action.unfavorite"
|
||||||
|
: "status.action.favorite"
|
||||||
|
case .bookmark:
|
||||||
|
return dataController.isBookmarked
|
||||||
|
? "status.action.unbookmark"
|
||||||
|
: "status.action.bookmark"
|
||||||
|
case .share:
|
||||||
|
return "status.action.share"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func count(dataController: StatusDataController, viewModel: StatusRowViewModel, theme: Theme) -> Int? {
|
func count(dataController: StatusDataController, viewModel: StatusRowViewModel, theme: Theme) -> Int? {
|
||||||
if theme.statusActionsDisplay == .discret && !viewModel.isFocused {
|
if theme.statusActionsDisplay == .discret && !viewModel.isFocused {
|
||||||
return nil
|
return nil
|
||||||
|
@ -104,6 +128,8 @@ struct StatusRowActionsView: View {
|
||||||
action.image(dataController: statusDataController)
|
action.image(dataController: statusDataController)
|
||||||
}
|
}
|
||||||
.buttonStyle(.statusAction())
|
.buttonStyle(.statusAction())
|
||||||
|
.accessibilityElement(children: .combine)
|
||||||
|
.accessibilityLabel("status.action.share-link")
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
actionButton(action: action)
|
actionButton(action: action)
|
||||||
|
@ -151,6 +177,8 @@ struct StatusRowActionsView: View {
|
||||||
.monospacedDigit()
|
.monospacedDigit()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.accessibilityElement(children: .combine)
|
||||||
|
.accessibilityLabel(action.accessibilityLabel(dataController: statusDataController, privateBoost: privateBoost()))
|
||||||
}
|
}
|
||||||
|
|
||||||
private func handleAction(action: Action) {
|
private func handleAction(action: Action) {
|
||||||
|
|
|
@ -90,6 +90,9 @@ public struct StatusRowMediaPreviewView: View {
|
||||||
await quickLook.prepareFor(urls: attachments.compactMap { $0.url }, selectedURL: attachment.url!)
|
await quickLook.prepareFor(urls: attachments.compactMap { $0.url }, selectedURL: attachment.url!)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.accessibilityElement(children: .combine)
|
||||||
|
.modifier(ConditionalAccessibilityLabelAltTextModifier(attachment: attachment))
|
||||||
|
.accessibilityAddTraits([.isButton, .isImage])
|
||||||
} else {
|
} else {
|
||||||
if isCompact || theme.statusDisplayStyle == .compact {
|
if isCompact || theme.statusDisplayStyle == .compact {
|
||||||
HStack {
|
HStack {
|
||||||
|
@ -269,6 +272,9 @@ public struct StatusRowMediaPreviewView: View {
|
||||||
await quickLook.prepareFor(urls: attachments.compactMap { $0.url }, selectedURL: attachment.url!)
|
await quickLook.prepareFor(urls: attachments.compactMap { $0.url }, selectedURL: attachment.url!)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.accessibilityElement(children: .combine)
|
||||||
|
.modifier(ConditionalAccessibilityLabelAltTextModifier(attachment: attachment))
|
||||||
|
.accessibilityAddTraits([.isButton, .isImage])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -328,3 +334,19 @@ public struct StatusRowMediaPreviewView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// A ``ViewModifier`` that creates a suitable accessibility label for an image that may or may not have alt text
|
||||||
|
private struct ConditionalAccessibilityLabelAltTextModifier: ViewModifier {
|
||||||
|
|
||||||
|
let attachment: MediaAttachment
|
||||||
|
|
||||||
|
func body(content: Content) -> some View {
|
||||||
|
if let altText = attachment.description {
|
||||||
|
content
|
||||||
|
.accessibilityLabel("accessibility.image.alt-text-\(altText)")
|
||||||
|
} else {
|
||||||
|
content
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ struct StatusRowReblogView: View {
|
||||||
EmojiTextApp(.init(stringValue: viewModel.status.account.safeDisplayName), emojis: viewModel.status.account.emojis)
|
EmojiTextApp(.init(stringValue: viewModel.status.account.safeDisplayName), emojis: viewModel.status.account.emojis)
|
||||||
Text("status.row.was-boosted")
|
Text("status.row.was-boosted")
|
||||||
}
|
}
|
||||||
.accessibilityElement()
|
.accessibilityElement(children: .combine)
|
||||||
.accessibilityLabel(
|
.accessibilityLabel(
|
||||||
Text("\(viewModel.status.account.safeDisplayName)")
|
Text("\(viewModel.status.account.safeDisplayName)")
|
||||||
+ Text(" ")
|
+ Text(" ")
|
||||||
|
|
|
@ -13,6 +13,12 @@ struct StatusRowReplyView: View {
|
||||||
Text("status.row.was-reply")
|
Text("status.row.was-reply")
|
||||||
Text(mention.username)
|
Text(mention.username)
|
||||||
}
|
}
|
||||||
|
.accessibilityElement(children: .combine)
|
||||||
|
.accessibilityLabel(
|
||||||
|
Text("status.row.was-reply")
|
||||||
|
+ Text(" ")
|
||||||
|
+ Text(mention.username)
|
||||||
|
)
|
||||||
.font(.scaledFootnote)
|
.font(.scaledFootnote)
|
||||||
.foregroundColor(.gray)
|
.foregroundColor(.gray)
|
||||||
.fontWeight(.semibold)
|
.fontWeight(.semibold)
|
||||||
|
|
Loading…
Reference in a new issue