diff --git a/assets/l10n/intl_en.arb b/assets/l10n/intl_en.arb index 2debdd3e5..84703a551 100644 --- a/assets/l10n/intl_en.arb +++ b/assets/l10n/intl_en.arb @@ -3948,15 +3948,6 @@ "roomDataMissing": "Some data may be missing from rooms in which you are not a member.", "updatePhoneOS": "You may need to update your device's OS version.", "wordsPerMinute": "Words per minute", - "roomCapacity": "Room Capacity", - "roomFull": "This room is already at capacity.", - "topicNotSet": "The topic has not been set.", - "capacityNotSet": "This room has no capacity limit.", - "roomCapacityHasBeenChanged": "Room capacity changed", - "roomExceedsCapacity": "Room exceeds capacity. Consider removing students from the room, or raising the capacity.", - "capacitySetTooLow": "Room capacity cannot be set below the current number of non-admins.", - "roomCapacityExplanation": "Room capacity limits the number of non-admins allowed in a room.", - "enterNumber": "Please enter a whole number value.", "autoIGCToolName": "Run Language Assistance Automatically", "autoIGCToolDescription": "Automatically run language assistance after typing messages", "runGrammarCorrection": "Run grammar correction", @@ -3969,5 +3960,15 @@ "tooltipInstructionsTitle": "Not sure what that does?", "tooltipInstructionsMobileBody": "Press and hold items to view tooltips.", "tooltipInstructionsBrowserBody": "Hover over items to view tooltips.", + "addSpaceToSpaceDescription": "Select a space to add as a parent", + "roomCapacity": "Room Capacity", + "roomFull": "This room is already at capacity.", + "topicNotSet": "The topic has not been set.", + "capacityNotSet": "This room has no capacity limit.", + "roomCapacityHasBeenChanged": "Room capacity changed", + "roomExceedsCapacity": "Room exceeds capacity. Consider removing students from the room, or raising the capacity.", + "capacitySetTooLow": "Room capacity cannot be set below the current number of non-admins.", + "roomCapacityExplanation": "Room capacity limits the number of non-admins allowed in a room.", + "enterNumber": "Please enter a whole number value.", "buildTranslation": "Build your translation from the choices above" } \ No newline at end of file diff --git a/lib/pages/chat_list/chat_list.dart b/lib/pages/chat_list/chat_list.dart index e9d043284..47fb51235 100644 --- a/lib/pages/chat_list/chat_list.dart +++ b/lib/pages/chat_list/chat_list.dart @@ -16,7 +16,6 @@ import 'package:fluffychat/pangea/utils/error_handler.dart'; import 'package:fluffychat/pangea/utils/firebase_analytics.dart'; import 'package:fluffychat/pangea/widgets/subscription/subscription_snackbar.dart'; import 'package:fluffychat/utils/localized_exception_extension.dart'; -import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart'; import 'package:fluffychat/utils/platform_infos.dart'; import 'package:fluffychat/utils/tor_stub.dart' if (dart.library.html) 'package:tor_detector_web/tor_detector_web.dart'; @@ -801,7 +800,10 @@ class ChatListController extends State final selectedSpace = await showConfirmationDialog( context: context, title: L10n.of(context)!.addToSpace, - message: L10n.of(context)!.addToSpaceDescription, + // #Pangea + // message: L10n.of(context)!.addToSpaceDescription, + message: L10n.of(context)!.addSpaceToSpaceDescription, + // Pangea# fullyCapitalizedForMaterial: false, actions: Matrix.of(context) .client @@ -820,8 +822,11 @@ class ChatListController extends State .map( (space) => AlertDialogAction( key: space.id, - label: space - .getLocalizedDisplayname(MatrixLocals(L10n.of(context)!)), + // #Pangea + // label: space + // .getLocalizedDisplayname(MatrixLocals(L10n.of(context)!)), + label: space.nameIncludingParents(context), + // Pangea# ), ) .toList(), diff --git a/lib/pangea/extensions/pangea_room_extension/children_and_parents_extension.dart b/lib/pangea/extensions/pangea_room_extension/children_and_parents_extension.dart index 79b923683..78ab91cc8 100644 --- a/lib/pangea/extensions/pangea_room_extension/children_and_parents_extension.dart +++ b/lib/pangea/extensions/pangea_room_extension/children_and_parents_extension.dart @@ -95,6 +95,24 @@ extension ChildrenAndParentsRoomExtension on Room { ) .toList(); + String _nameIncludingParents(BuildContext context) { + String nameSoFar = getLocalizedDisplayname(MatrixLocals(L10n.of(context)!)); + Room currentRoom = this; + if (currentRoom.immediateClassParents.isEmpty) { + return nameSoFar; + } + currentRoom = currentRoom.immediateClassParents.first; + var nameToAdd = + currentRoom.getLocalizedDisplayname(MatrixLocals(L10n.of(context)!)); + nameToAdd = + nameToAdd.length <= 10 ? nameToAdd : "${nameToAdd.substring(0, 10)}..."; + nameSoFar = '$nameToAdd > $nameSoFar'; + if (currentRoom.immediateClassParents.isEmpty) { + return nameSoFar; + } + return "... > $nameSoFar"; + } + // gets all space children of a given space, down the // space tree. List get _allSpaceChildRoomIds { diff --git a/lib/pangea/extensions/pangea_room_extension/pangea_room_extension.dart b/lib/pangea/extensions/pangea_room_extension/pangea_room_extension.dart index a8cc00a84..edcd80b04 100644 --- a/lib/pangea/extensions/pangea_room_extension/pangea_room_extension.dart +++ b/lib/pangea/extensions/pangea_room_extension/pangea_room_extension.dart @@ -16,6 +16,7 @@ import 'package:fluffychat/pangea/models/class_model.dart'; import 'package:fluffychat/pangea/models/tokens_event_content_model.dart'; import 'package:fluffychat/pangea/utils/bot_name.dart'; import 'package:fluffychat/pangea/utils/error_handler.dart'; +import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart'; import 'package:fluffychat/widgets/matrix.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; @@ -66,7 +67,6 @@ extension PangeaRoom on Room { Future inviteTeachersToAnalyticsRoom() async => await _inviteTeachersToAnalyticsRoom(); - // Invite teachers of 1 space to all users' analytics rooms Future inviteSpaceTeachersToAnalyticsRooms() async => await _inviteSpaceTeachersToAnalyticsRooms(); @@ -109,6 +109,9 @@ extension PangeaRoom on Room { List get pangeaSpaceParents => _pangeaSpaceParents; + String nameIncludingParents(BuildContext context) => + _nameIncludingParents(context); + List get allSpaceChildRoomIds => _allSpaceChildRoomIds; // class_and_exchange_settings diff --git a/needed-translations.txt b/needed-translations.txt index 4edf4f577..cbdc449be 100644 --- a/needed-translations.txt +++ b/needed-translations.txt @@ -839,15 +839,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -860,6 +851,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -2298,15 +2299,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -2319,6 +2311,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -3219,15 +3221,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -3240,6 +3233,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -4140,15 +4143,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -4161,6 +4155,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -5061,15 +5065,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -5082,6 +5077,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -5982,15 +5987,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -6003,6 +5999,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -6850,15 +6856,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -6871,6 +6868,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -7771,15 +7778,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -7792,6 +7790,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -8692,15 +8700,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -8713,12 +8712,7 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", - "buildTranslation" - ], - - "es": [ - "suggestToChat", - "suggestToChatDesc", + "addSpaceToSpaceDescription", "roomCapacity", "roomFull", "topicNotSet", @@ -8728,21 +8722,13 @@ "capacitySetTooLow", "roomCapacityExplanation", "enterNumber", - "autoIGCToolName", - "autoIGCToolDescription", - "runGrammarCorrection", - "grammarCorrectionFailed", - "grammarCorrectionComplete", - "leaveRoomDescription", - "archiveSpaceDescription", - "leaveSpaceDescription", - "onlyAdminDescription", - "tooltipInstructionsTitle", - "tooltipInstructionsMobileBody", - "tooltipInstructionsBrowserBody", "buildTranslation" ], + "es": [ + "addSpaceToSpaceDescription" + ], + "et": [ "accountInformation", "addGroupDescription", @@ -9583,15 +9569,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -9604,6 +9581,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -10447,15 +10434,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -10468,6 +10446,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -11368,15 +11356,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -11389,6 +11368,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -12289,15 +12278,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -12310,6 +12290,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -13210,15 +13200,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -13231,6 +13212,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -14131,15 +14122,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -14152,6 +14134,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -14995,15 +14987,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -15016,6 +14999,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -15916,15 +15909,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -15937,6 +15921,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -16837,15 +16831,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -16858,6 +16843,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -17745,15 +17740,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -17766,6 +17752,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -18666,15 +18662,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -18687,6 +18674,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -20111,15 +20108,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -20132,6 +20120,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -21032,15 +21030,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -21053,6 +21042,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -21953,15 +21952,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -21974,6 +21964,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -22859,15 +22859,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -22880,6 +22871,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -23780,15 +23781,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -23801,6 +23793,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -24701,15 +24703,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -24722,6 +24715,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -25622,15 +25625,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -25643,6 +25637,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -26543,15 +26547,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -26564,6 +26559,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -27464,15 +27469,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -27485,6 +27481,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -28385,15 +28391,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -28406,6 +28403,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -29306,15 +29313,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -29327,6 +29325,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -30227,15 +30235,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -30248,6 +30247,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -31117,15 +31126,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -31138,6 +31138,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -32038,15 +32048,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -32059,6 +32060,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -32959,15 +32970,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -32980,6 +32982,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -33823,15 +33835,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -33844,6 +33847,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -34744,15 +34757,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -34765,6 +34769,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -35665,15 +35679,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -35686,6 +35691,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -36586,15 +36601,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -36607,6 +36613,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -37472,15 +37488,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -37493,6 +37500,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -38393,15 +38410,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -38414,6 +38422,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -39314,15 +39332,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -39335,6 +39344,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -40220,15 +40239,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -40241,6 +40251,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -41084,15 +41104,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -41105,6 +41116,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -42005,15 +42026,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -42026,6 +42038,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -42869,15 +42891,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -42890,6 +42903,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ], @@ -43790,15 +43813,6 @@ "roomDataMissing", "updatePhoneOS", "wordsPerMinute", - "roomCapacity", - "roomFull", - "topicNotSet", - "capacityNotSet", - "roomCapacityHasBeenChanged", - "roomExceedsCapacity", - "capacitySetTooLow", - "roomCapacityExplanation", - "enterNumber", "autoIGCToolName", "autoIGCToolDescription", "runGrammarCorrection", @@ -43811,6 +43825,16 @@ "tooltipInstructionsTitle", "tooltipInstructionsMobileBody", "tooltipInstructionsBrowserBody", + "addSpaceToSpaceDescription", + "roomCapacity", + "roomFull", + "topicNotSet", + "capacityNotSet", + "roomCapacityHasBeenChanged", + "roomExceedsCapacity", + "capacitySetTooLow", + "roomCapacityExplanation", + "enterNumber", "buildTranslation" ] }