File tree Expand file tree Collapse file tree
frontend/packages/cozeloop
resources/loop-lng/src/locales/tag
tag-components/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2075,7 +2075,7 @@ interface I18nTranslateFn {
20752075 ) : string ;
20762076 /** 删除标签 */
20772077 ( key : 'delete_tag' , fallbackText ?: string ) : string ;
2078- /** 更新人: */
2078+ /** 更新人 */
20792079 ( key : 'updated_by' , fallbackText ?: string ) : string ;
20802080 /** 人工标注管理 */
20812081 ( key : 'manual_annotation_management' , fallbackText ?: string ) : string ;
@@ -2939,7 +2939,7 @@ interface I18nTranslateFn {
29392939 ( key : 'disabled_tag_not_searchable' , fallbackText ?: string ) : string ;
29402940 /** 确定启用该标签吗? */
29412941 ( key : 'confirm_enable_tag' , fallbackText ?: string ) : string ;
2942- /** 修改将会同步至标签管理” 。 */
2942+ /** 修改将会同步至标签管理。 */
29432943 ( key : 'changes_sync_to_space_tag_management' , fallbackText ?: string ) : string ;
29442944 /** 标签配置 */
29452945 ( key : 'tag_configuration' , fallbackText ?: string ) : string ;
@@ -2995,6 +2995,12 @@ interface I18nTranslateFn {
29952995 ( key : 'exit' , fallbackText ?: string ) : string ;
29962996 /** 确认保存 */
29972997 ( key : 'confirm_save' , fallbackText ?: string ) : string ;
2998+ /** 变更日志 */
2999+ ( key : 'change_log' , fallbackText ?: string ) : string ;
3000+ /** 展开 */
3001+ ( key : 'extend' , fallbackText ?: string ) : string ;
3002+ /** 只读 */
3003+ ( key : 'read_only' , fallbackText ?: string ) : string ;
29983004}
29993005
30003006/** I18n of Cozeloop */
Original file line number Diff line number Diff line change 6767 "exit" : " Exit" ,
6868 "confirm_save" : " Confirm Save" ,
6969 "save_success" : " Save successful" ,
70- "create_success" : " Create successful"
70+ "create_success" : " Create successful" ,
71+ "change_log" : " Change Log" ,
72+ "extend" : " Expand" ,
73+ "read_only" : " Read Only" ,
74+ "updated_by" : " Updated By"
7175}
Original file line number Diff line number Diff line change 3737 "category_tag_option_disabled_warning" : " 该分类标签选项已禁用,若修改将不再展示" ,
3838 "disabled_tag_not_searchable" : " 禁用后该标签无法被搜索添加" ,
3939 "confirm_enable_tag" : " 确定启用该标签吗?" ,
40- "changes_sync_to_space_tag_management" : " 修改将会同步至标签管理” 。" ,
40+ "changes_sync_to_space_tag_management" : " 修改将会同步至标签管理。" ,
4141 "tag_configuration" : " 标签配置" ,
4242 "enter_tag_name" : " 请输入标签名称" ,
4343 "enter_description" : " 请输入描述" ,
6767 "exit" : " 退出" ,
6868 "confirm_save" : " 确认保存" ,
6969 "save_success" : " 保存成功" ,
70- "create_success" : " 创建成功"
70+ "create_success" : " 创建成功" ,
71+ "change_log" : " 变更日志" ,
72+ "extend" : " 展开" ,
73+ "read_only" : " 只读" ,
74+ "updated_by" : " 更新人"
7175}
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ export const AnnotationContent = (props: AnnotationContentProps) => {
128128 < div className = "flex items-center gap-x-2 text-[13px] font-normal leading-5 text-[var(--coz-fg-secondary)]" >
129129 < span >
130130 { I18n . t ( 'tag_number_with_placeholder' , {
131- number : index + 1 ,
131+ placeholder1 : index + 1 ,
132132 } ) }
133133 </ span >
134134 < Tooltip
Original file line number Diff line number Diff line change @@ -70,19 +70,15 @@ export const TagDetailHeader = ({
7070 </ div >
7171 < Divider layout = "vertical" className = "h-[12px] mx-[3px]" />
7272 < div className = "text-[var(--coz-fg-secondary)] whitespace-nowrap" >
73- { I18n . t ( 'update_time' , {
74- placeholder1 : formatTimestampToString (
75- base_info ?. updated_at ?? '' ,
76- ) ,
77- } ) }
73+ { `${ I18n . t ( 'update_time' ) } : ${ formatTimestampToString (
74+ base_info ?. updated_at ?? '' ,
75+ ) } `}
7876 </ div >
7977 < Divider layout = "vertical" className = "h-[12px] mx-[3px]" />
8078 < div className = "text-[var(--coz-fg-secondary)] whitespace-nowrap" >
81- { I18n . t ( 'create_time' , {
82- placeholder1 : formatTimestampToString (
83- base_info ?. created_at ?? '' ,
84- ) ,
85- } ) }
79+ { `${ I18n . t ( 'create_time' ) } : ${ formatTimestampToString (
80+ base_info ?. created_at ?? '' ,
81+ ) } `}
8682 </ div >
8783 < Divider layout = "vertical" className = "h-[12px] mx-[3px]" />
8884 < div className = "flex items-center flex-1 overflow-hidden" >
You can’t perform that action at this time.
0 commit comments