Skip to content

Commit 41e3d57

Browse files
committed
emoji_reaction: Add labeled Semantics container node for reactions list
1 parent b232183 commit 41e3d57

16 files changed

+57
-1
lines changed

assets/l10n/app_en.arb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -973,6 +973,10 @@
973973
"@reactedEmojiSelfUser": {
974974
"description": "Display name for the user themself, to show on an emoji reaction added by the user."
975975
},
976+
"reactionChipsLabel": "Reactions",
977+
"@reactionChipsLabel": {
978+
"description": "Text identifying the container of reaction chips on a message. (An accessibility label for assistive technology.)"
979+
},
976980
"reactionChipLabel": "{emojiName}: {votes}",
977981
"@reactionChipLabel": {
978982
"description": "Text describing a reaction chip, with the emoji name and a list or number of votes. (An accessibility label for assistive technology.)",

lib/generated/l10n/zulip_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1469,6 +1469,12 @@ abstract class ZulipLocalizations {
14691469
/// **'You'**
14701470
String get reactedEmojiSelfUser;
14711471

1472+
/// Text identifying the container of reaction chips on a message. (An accessibility label for assistive technology.)
1473+
///
1474+
/// In en, this message translates to:
1475+
/// **'Reactions'**
1476+
String get reactionChipsLabel;
1477+
14721478
/// Text describing a reaction chip, with the emoji name and a list or number of votes. (An accessibility label for assistive technology.)
14731479
///
14741480
/// In en, this message translates to:

lib/generated/l10n/zulip_localizations_ar.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,9 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
796796
@override
797797
String get reactedEmojiSelfUser => 'You';
798798

799+
@override
800+
String get reactionChipsLabel => 'Reactions';
801+
799802
@override
800803
String reactionChipLabel(String emojiName, String votes) {
801804
return '$emojiName: $votes';

lib/generated/l10n/zulip_localizations_de.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -816,6 +816,9 @@ class ZulipLocalizationsDe extends ZulipLocalizations {
816816
@override
817817
String get reactedEmojiSelfUser => 'Du';
818818

819+
@override
820+
String get reactionChipsLabel => 'Reactions';
821+
819822
@override
820823
String reactionChipLabel(String emojiName, String votes) {
821824
return '$emojiName: $votes';

lib/generated/l10n/zulip_localizations_en.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,9 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
796796
@override
797797
String get reactedEmojiSelfUser => 'You';
798798

799+
@override
800+
String get reactionChipsLabel => 'Reactions';
801+
799802
@override
800803
String reactionChipLabel(String emojiName, String votes) {
801804
return '$emojiName: $votes';

lib/generated/l10n/zulip_localizations_fr.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,9 @@ class ZulipLocalizationsFr extends ZulipLocalizations {
796796
@override
797797
String get reactedEmojiSelfUser => 'You';
798798

799+
@override
800+
String get reactionChipsLabel => 'Reactions';
801+
799802
@override
800803
String reactionChipLabel(String emojiName, String votes) {
801804
return '$emojiName: $votes';

lib/generated/l10n/zulip_localizations_it.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -811,6 +811,9 @@ class ZulipLocalizationsIt extends ZulipLocalizations {
811811
@override
812812
String get reactedEmojiSelfUser => 'Tu';
813813

814+
@override
815+
String get reactionChipsLabel => 'Reactions';
816+
814817
@override
815818
String reactionChipLabel(String emojiName, String votes) {
816819
return '$emojiName: $votes';

lib/generated/l10n/zulip_localizations_ja.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -793,6 +793,9 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
793793
@override
794794
String get reactedEmojiSelfUser => 'You';
795795

796+
@override
797+
String get reactionChipsLabel => 'Reactions';
798+
796799
@override
797800
String reactionChipLabel(String emojiName, String votes) {
798801
return '$emojiName: $votes';

lib/generated/l10n/zulip_localizations_nb.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,9 @@ class ZulipLocalizationsNb extends ZulipLocalizations {
796796
@override
797797
String get reactedEmojiSelfUser => 'You';
798798

799+
@override
800+
String get reactionChipsLabel => 'Reactions';
801+
799802
@override
800803
String reactionChipLabel(String emojiName, String votes) {
801804
return '$emojiName: $votes';

lib/generated/l10n/zulip_localizations_pl.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,9 @@ class ZulipLocalizationsPl extends ZulipLocalizations {
806806
@override
807807
String get reactedEmojiSelfUser => 'Ty';
808808

809+
@override
810+
String get reactionChipsLabel => 'Reactions';
811+
809812
@override
810813
String reactionChipLabel(String emojiName, String votes) {
811814
return '$emojiName: $votes';

0 commit comments

Comments
 (0)