refactor(task-drawer): update localization keys for created and updated timestamps

- Modified localization JSON files for multiple languages to use double curly braces for variable interpolation in the createdBy and updatedTime fields.
- Ensured consistency across English, German, Spanish, Portuguese, Albanian, and Chinese translations for better formatting of dynamic content.
This commit is contained in:
chamiakJ
2025-07-09 22:51:20 +05:30
parent 75c55fff21
commit 5fb2633bc5
8 changed files with 49 additions and 21 deletions

View File

@@ -79,8 +79,8 @@
"maxFilesError": "Mund të ngarkoni maksimum {count} skedarë",
"processFilesError": "Dështoi përpunimi i skedarëve",
"addCommentError": "Ju lutemi shtoni një koment ose bashkëngjitni skedarë",
"createdBy": "Krijuar {time} nga {user}",
"updatedTime": "Përditësuar {time}"
"createdBy": "Krijuar {{time}} nga {{user}}",
"updatedTime": "Përditësuar {{time}}"
},
"searchInputPlaceholder": "Kërko sipas emrit",
"pendingInvitation": "Ftesë në Pritje"

View File

@@ -79,8 +79,8 @@
"maxFilesError": "Sie können maximal {count} Dateien hochladen",
"processFilesError": "Fehler beim Verarbeiten der Dateien",
"addCommentError": "Bitte fügen Sie einen Kommentar hinzu oder hängen Sie Dateien an",
"createdBy": "Erstellt {time} von {user}",
"updatedTime": "Aktualisiert {time}"
"createdBy": "Erstellt {{time}} von {{user}}",
"updatedTime": "Aktualisiert {{time}}"
},
"searchInputPlaceholder": "Nach Name suchen",
"pendingInvitation": "Ausstehende Einladung"

View File

@@ -79,8 +79,8 @@
"maxFilesError": "You can only upload a maximum of {count} files",
"processFilesError": "Failed to process files",
"addCommentError": "Please add a comment or attach files",
"createdBy": "Created {time} by {user}",
"updatedTime": "Updated {time}"
"createdBy": "Created {{time}} by {{user}}",
"updatedTime": "Updated {{time}}"
},
"searchInputPlaceholder": "Search by name",
"pendingInvitation": "Pending Invitation"

View File

@@ -79,8 +79,8 @@
"maxFilesError": "Solo puede subir un máximo de {count} archivos",
"processFilesError": "Error al procesar archivos",
"addCommentError": "Por favor agregue un comentario o adjunte archivos",
"createdBy": "Creado {time} por {user}",
"updatedTime": "Actualizado {time}"
"createdBy": "Creado {{time}} por {{user}}",
"updatedTime": "Actualizado {{time}}"
},
"searchInputPlaceholder": "Buscar por nombre",
"pendingInvitation": "Invitación Pendiente"

View File

@@ -79,8 +79,8 @@
"maxFilesError": "Você pode fazer upload de no máximo {count} arquivos",
"processFilesError": "Falha ao processar arquivos",
"addCommentError": "Por favor adicione um comentário ou anexe arquivos",
"createdBy": "Criado {time} por {user}",
"updatedTime": "Atualizado {time}"
"createdBy": "Criado {{time}} por {{user}}",
"updatedTime": "Atualizado {{time}}"
},
"searchInputPlaceholder": "Pesquisar por nome",
"pendingInvitation": "Convite Pendente"

View File

@@ -79,8 +79,8 @@
"maxFilesError": "您最多只能上传{count}个文件",
"processFilesError": "处理文件失败",
"addCommentError": "请添加评论或附加文件",
"createdBy": "{time}由{user}创建",
"updatedTime": "更新于{time}"
"createdBy": "{{time}}由{{user}}创建",
"updatedTime": "更新于{{time}}"
},
"searchInputPlaceholder": "按名称搜索",
"pendingInvitation": "待处理邀请"

View File

@@ -1,5 +1,5 @@
import { Button, Flex, Form, Mentions, Space, Tooltip, Typography, message } from 'antd';
import { useCallback, useEffect, useRef, useState } from 'react';
import { useCallback, useEffect, useRef, useState, useMemo } from 'react';
import { useTranslation } from 'react-i18next';
import { PaperClipOutlined, DeleteOutlined, PlusOutlined } from '@ant-design/icons';
import { useAppSelector } from '@/hooks/useAppSelector';
@@ -15,6 +15,7 @@ import logger from '@/utils/errorLogger';
import taskCommentsApiService from '@/api/tasks/task-comments.api.service';
import { teamMembersApiService } from '@/api/team-members/teamMembers.api.service';
import { ITeamMember } from '@/types/teamMembers/teamMember.types';
import { fromNow } from '@/utils/dateUtils';
// Utility function to convert file to base64
const getBase64 = (file: File): Promise<string> => {
@@ -66,6 +67,31 @@ const InfoTabFooter = () => {
// get member list from project members slice
const projectMembersList = useAppSelector(state => state.projectMemberReducer.membersList);
// Calculate relative time values
const createdFromNow = useMemo(() => {
const createdAt = taskFormViewModel?.task?.created_at;
if (!createdAt) return 'N/A';
try {
return fromNow(createdAt);
} catch (error) {
console.error('Error formatting created_at:', error, createdAt);
return 'N/A';
}
}, [taskFormViewModel?.task?.created_at]);
const updatedFromNow = useMemo(() => {
const updatedAt = taskFormViewModel?.task?.updated_at;
if (!updatedAt) return 'N/A';
try {
return fromNow(updatedAt);
} catch (error) {
console.error('Error formatting updated_at:', error, updatedAt);
return 'N/A';
}
}, [taskFormViewModel?.task?.updated_at]);
// function to handle cancel
const handleCancel = () => {
form.resetFields(['comment']);
@@ -454,28 +480,28 @@ const InfoTabFooter = () => {
<Flex align="center" justify="space-between" style={{ width: '100%', marginTop: 8 }}>
<Tooltip
title={
taskFormViewModel?.task?.created_from_now
? `Created ${taskFormViewModel.task.created_from_now}`
createdFromNow !== 'N/A'
? `Created ${createdFromNow}`
: 'N/A'
}
>
<Typography.Text type="secondary" style={{ fontSize: 12 }}>
{t('taskInfoTab.comments.createdBy', {
time: taskFormViewModel?.task?.created_from_now || 'N/A',
{t('taskInfoTab.comments.createdBy', {
time: createdFromNow,
user: taskFormViewModel?.task?.reporter || ''
})}
</Typography.Text>
</Tooltip>
<Tooltip
title={
taskFormViewModel?.task?.updated_from_now
? `Updated ${taskFormViewModel.task.updated_from_now}`
updatedFromNow !== 'N/A'
? `Updated ${updatedFromNow}`
: 'N/A'
}
>
<Typography.Text type="secondary" style={{ fontSize: 12 }}>
{t('taskInfoTab.comments.updatedTime', {
time: taskFormViewModel?.task?.updated_from_now || 'N/A'
{t('taskInfoTab.comments.updatedTime', {
time: updatedFromNow
})}
</Typography.Text>
</Tooltip>

View File

@@ -39,6 +39,8 @@ export interface ITask {
manual_progress: boolean;
progress_value: number | null;
weight: number | null;
created_at?: string;
updated_at?: string;
}
export interface IProjectMemberViewModel extends IProjectMember {