fix quarterlyreports i18n

This commit is contained in:
yuanshan 2025-10-15 14:42:10 +08:00
parent faac577341
commit 56609fed31
8 changed files with 137 additions and 27 deletions

View File

@ -509,6 +509,12 @@ export default {
button: "Go",
},
download: "Download",
pdfDownload: "PDF Download",
pagination: {
displaying: "Displaying {start} - {end} of {total} results",
perPage: "{size}/page",
goto: "Goto",
},
},
},
header_menu: {

View File

@ -451,5 +451,20 @@ export default {
],
note: 'メディア、市場専門家、または株主からの問い合わせを受けたMinim代表者承認されたスピーカーを除くは、そのような問い合わせに応答せず、問い合わせ者を承認されたスピーカーに紹介する必要があります。ただし、Minimの投資家関係およびマーケティングチームに割り当てられたMinim代表者は、承認されたスピーカーが随時定めるガイドラインに従って、公開情報に関する日常的な問い合わせに応答することができます。'
}
}
},
financialinformation: {
quarterlyreports: {
title: '四半期報告書',
search: {
placeholder: '検索',
button: '検索',
},
pdfDownload: 'PDFダウンロード',
pagination: {
displaying: '{total}件中 {start} - {end}件を表示',
perPage: '{size}/ページ',
goto: 'ジャンプ',
},
},
},
}

View File

@ -447,5 +447,20 @@ export default {
],
note: '收到媒體、市場專業人士或股東任何詢問的Minim代表授權發言人除外不得回覆此類詢問但應將提問者轉介給授權發言人。然而分配給Minim投資者關係和營銷團隊的Minim代表可以按照授權發言人不時制定的指導方針對公開信息的例行詢問作出回應。'
}
}
},
financialinformation: {
quarterlyreports: {
title: '季度報告',
search: {
placeholder: '搜索',
button: '開始',
},
pdfDownload: 'PDF 下載',
pagination: {
displaying: '顯示第 {start} - {end} 條,共 {total} 條',
perPage: '{size}/頁',
goto: '前往',
},
},
},
}

View File

@ -448,9 +448,25 @@ export default {
'1.静默期——公司遵守"静默期"从季度末日期开始到收益发布时结束。在此期间企业管理层将不会与分析师或投资者进行1:1的会面。然而根据要求可向投资者提供基于事实的公共信息并由授权投资者关系联系人进行分析。',
'2.分析师会议/电话会议——所有讨论季度、年度财务和业务信息的分析师会议或通话应通过互联网或电话会议同时向所有感兴趣的公众广播。会议的适当提前通知和同步广播应通过新闻稿或符合FD条例的其他通信方式进行。',
'3.收益新闻稿——收益新闻稿将在投资者关系部和首席财务官确定的会议或电话会议开始时或之前按照适用的美国证券交易委员会和纳斯达克规则在新闻专线上发布以8-K表格的形式提供给美国证券交易会并发布在公司网站上。',
'4.有关年度首次认购收入和每股收益范围的指导意见,可在收益新闻稿中提供,如有必要,可在每个季度的收益新闻稿上提供对指导意见的修改。一般来说,公司不会在本季度更新本指南或提供额外指南,除非财务副总裁/首席财务官认为有必要并且只能根据FD条例在公开论坛上提供。'
'4.有关年度首次认购收入和每股收益范围的指导意见,可在收益新闻稿中提供,如有必要,可在每个季度的收益新闻稿上提供对指导意见的修改。一般来说,公司不会在本季度更新本指南或提供额外指南,除非财务副总裁/首席财务官认为有必要并且只能根据FD条例在公开论坛上提供。',
'收到媒体、市场专业人士或股东任何询问的Minim代表授权发言人除外不得回复此类询问但应将提问者转介给授权发言人。然而分配给Minim投资者关系和营销团队的Minim代表可以按照授权发言人不时制定的指导方针对公开信息的例行询问作出回应。'
],
note: '收到媒体、市场专业人士或股东任何询问的Minim代表授权发言人除外不得回复此类询问但应将提问者转介给授权发言人。然而分配给Minim投资者关系和营销团队的Minim代表可以按照授权发言人不时制定的指导方针对公开信息的例行询问作出回应。'
}
}
},
financialinformation: {
quarterlyreports: {
title: '季度报告',
search: {
placeholder: '搜索',
button: '开始',
},
pdfDownload: 'PDF 下载',
pagination: {
displaying: '显示第 {start} - {end} 条,共 {total} 条',
perPage: '{size}/页',
goto: '前往',
},
},
},
}

View File

@ -40,7 +40,7 @@
class="download-text"
@click="downloadPdf(item.url, item.attachmentName)"
>
PDF Download
{{ t("financialinformation.quarterlyreports.pdfDownload") }}
</p>
</div>
</div>
@ -52,8 +52,13 @@
<!-- 分页器 -->
<div class="pagination-container">
<div class="pagination-info">
Displaying {{ displayRange.start }} - {{ displayRange.end }} of
{{ state.total }} results
{{
t("financialinformation.quarterlyreports.pagination.displaying", {
start: displayRange.start,
end: displayRange.end,
total: state.total,
})
}}
</div>
<div class="pagination-controls">
<div class="pagination-buttons">
@ -103,7 +108,11 @@
</button>
</div>
<div class="page-size-selector" @click="togglePageSizeMenu">
<span>{{ state.pageSize }}/page</span>
<span>{{
t("financialinformation.quarterlyreports.pagination.perPage", {
size: state.pageSize,
})
}}</span>
<svg width="10" height="5" viewBox="0 0 10 5" fill="none">
<path
d="M1 1L5 4L9 1"
@ -122,12 +131,18 @@
:class="{ active: state.pageSize === size }"
@click="changePageSize(size)"
>
{{ size }}/page
{{
t("financialinformation.quarterlyreports.pagination.perPage", {
size: size,
})
}}
</div>
</div>
</div>
<div class="goto-section">
<span>Goto</span>
<span>{{
t("financialinformation.quarterlyreports.pagination.goto")
}}</span>
<input
type="number"
v-model="state.gotoPage"

View File

@ -40,7 +40,7 @@
class="download-text"
@click="downloadPdf(item.url, item.attachmentName)"
>
PDF Download
{{ t("financialinformation.quarterlyreports.pdfDownload") }}
</p>
</div>
</div>
@ -52,8 +52,13 @@
<!-- 分页器 -->
<div class="pagination-container">
<div class="pagination-info">
Displaying {{ displayRange.start }} - {{ displayRange.end }} of
{{ state.total }} results
{{
t("financialinformation.quarterlyreports.pagination.displaying", {
start: displayRange.start,
end: displayRange.end,
total: state.total,
})
}}
</div>
<div class="pagination-controls">
<div class="pagination-buttons">
@ -103,7 +108,11 @@
</button>
</div>
<div class="page-size-selector" @click="togglePageSizeMenu">
<span>{{ state.pageSize }}/page</span>
<span>{{
t("financialinformation.quarterlyreports.pagination.perPage", {
size: state.pageSize,
})
}}</span>
<svg width="10" height="5" viewBox="0 0 10 5" fill="none">
<path
d="M1 1L5 4L9 1"
@ -122,12 +131,18 @@
:class="{ active: state.pageSize === size }"
@click="changePageSize(size)"
>
{{ size }}/page
{{
t("financialinformation.quarterlyreports.pagination.perPage", {
size: size,
})
}}
</div>
</div>
</div>
<div class="goto-section">
<span>Goto</span>
<span>{{
t("financialinformation.quarterlyreports.pagination.goto")
}}</span>
<input
type="number"
v-model="state.gotoPage"

View File

@ -39,7 +39,7 @@
class="download-text"
@click="downloadPdf(item.url, item.attachmentName)"
>
PDF Download
{{ t("financialinformation.quarterlyreports.pdfDownload") }}
</p>
</div>
</div>
@ -97,7 +97,11 @@
</button>
</div>
<div class="page-size-selector" @click="togglePageSizeMenu">
<span>{{ state.pageSize }}/page</span>
<span>{{
t("financialinformation.quarterlyreports.pagination.perPage", {
size: state.pageSize,
})
}}</span>
<svg width="10" height="5" viewBox="0 0 10 5" fill="none">
<path
d="M1 1L5 4L9 1"
@ -116,14 +120,23 @@
:class="{ active: state.pageSize === size }"
@click="changePageSize(size)"
>
{{ size }}/page
{{
t("financialinformation.quarterlyreports.pagination.perPage", {
size: size,
})
}}
</div>
</div>
</div>
</div>
<div class="pagination-info">
Displaying {{ displayRange.start }} - {{ displayRange.end }} of
{{ state.total }} results
{{
t("financialinformation.quarterlyreports.pagination.displaying", {
start: displayRange.start,
end: displayRange.end,
total: state.total,
})
}}
</div>
</div>
</template>

View File

@ -40,7 +40,7 @@
class="download-text"
@click="downloadPdf(item.url, item.attachmentName)"
>
PDF Download
{{ t("financialinformation.quarterlyreports.pdfDownload") }}
</p>
</div>
</div>
@ -98,7 +98,11 @@
</button>
</div>
<div class="page-size-selector" @click="togglePageSizeMenu">
<span>{{ state.pageSize }}/page</span>
<span>{{
t("financialinformation.quarterlyreports.pagination.perPage", {
size: state.pageSize,
})
}}</span>
<svg width="10" height="5" viewBox="0 0 10 5" fill="none">
<path
d="M1 1L5 4L9 1"
@ -117,12 +121,18 @@
:class="{ active: state.pageSize === size }"
@click="changePageSize(size)"
>
{{ size }}/page
{{
t("financialinformation.quarterlyreports.pagination.perPage", {
size: size,
})
}}
</div>
</div>
</div>
<div class="goto-section">
<span>Goto</span>
<span>{{
t("financialinformation.quarterlyreports.pagination.goto")
}}</span>
<input
type="number"
v-model="state.gotoPage"
@ -134,8 +144,13 @@
</div>
</div>
<div class="pagination-info">
Displaying {{ displayRange.start }} - {{ displayRange.end }} of
{{ state.total }} results
{{
t("financialinformation.quarterlyreports.pagination.displaying", {
start: displayRange.start,
end: displayRange.end,
total: state.total,
})
}}
</div>
</div>
</template>