Skip to content

Commit c77ac75

Browse files
committed
fix: add translations
1 parent 8ca2c91 commit c77ac75

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/languages/en.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2978,6 +2978,7 @@ const translations = {
29782978
companyCards: 'Company cards',
29792979
workflows: 'Workflows',
29802980
workspace: 'Workspace',
2981+
findWorkspace: 'Find workspace',
29812982
edit: 'Edit workspace',
29822983
enabled: 'Enabled',
29832984
disabled: 'Disabled',

src/languages/es.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3002,6 +3002,7 @@ const translations = {
30023002
companyCards: 'Tarjetas de empresa',
30033003
workflows: 'Flujos de trabajo',
30043004
workspace: 'Espacio de trabajo',
3005+
findWorkspace: 'Encontrar espacio de trabajo',
30053006
edit: 'Editar espacio de trabajo',
30063007
enabled: 'Activada',
30073008
disabled: 'Desactivada',

src/pages/workspace/WorkspacesListPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ function WorkspacesListPage() {
434434
{isLessThanMediumScreen && <View style={styles.mt3} />}
435435
{workspaces.length > CONST.SEARCH_ITEM_LIMIT && (
436436
<SearchBar
437-
label="Find workspace"
437+
label={translate('workspace.common.findWorkspace')}
438438
inputValue={inputValue}
439439
onChangeText={setInputValue}
440440
shouldShowEmptyState={filteredWorkspaces.length === 0 && inputValue.length > 0}

0 commit comments

Comments
 (0)