From 63d98defcdbf1bf243b18de72ab6a11866c33c64 Mon Sep 17 00:00:00 2001 From: Dat PHAM HOANG Date: Fri, 15 Dec 2023 09:09:56 +0700 Subject: [PATCH] LA-1217 Fix: Fixed wrong create workspace button text translation key --- .../util/extensions/linshare_node_type_extension.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/presentation/util/extensions/linshare_node_type_extension.dart b/lib/presentation/util/extensions/linshare_node_type_extension.dart index b9cf28432..e0d08e5a7 100644 --- a/lib/presentation/util/extensions/linshare_node_type_extension.dart +++ b/lib/presentation/util/extensions/linshare_node_type_extension.dart @@ -144,9 +144,9 @@ extension LinShareNodeTypeExtension on LinShareNodeType { case LinShareNodeType.DRIVE: return AppLocalizations.of(context).create_drive; case LinShareNodeType.WORK_GROUP: - return AppLocalizations.of(context).create_workgroup; + return AppLocalizations.of(context).create_new_workgroup; case LinShareNodeType.WORK_SPACE: - return AppLocalizations.of(context).create_workspace; + return AppLocalizations.of(context).create_new_workspace; } }