Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: translate developer articles #1055

Merged
merged 3 commits into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/developers/components/DeveloperLanding.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ onMounted(() => {
<template>
<PageShowcaseListLayout
spotlightTitle="Spotlight"
featuredTitle="Vue.js Certified developers"
featuredTitle="认证的 Vue.js 开发者"
>
<template #hero>
<DeveloperHero />
Expand All @@ -44,7 +44,7 @@ onMounted(() => {
target="_blank"
class="accent-button"
>
Contact {{ partnerConfig.partnerName }} for a tailored fit
联系 {{ partnerConfig.partnerName }} 获取定制化的服务
</a>
</template>

Expand All @@ -64,7 +64,7 @@ onMounted(() => {
target="_blank"
class="accent-button"
>
Contact {{ partnerConfig.partnerName }} for a tailored fit
联系 Proxify 获取定制化的服务
</a>
</div>
</template>
Expand Down
24 changes: 13 additions & 11 deletions src/developers/partnerConfig.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import partnerData from '../partners/partners.json'

const partnerName = 'Proxify'
const partner = partnerData.find(partner => partner.name === partnerName)
const partner = partnerData.find((partner) => partner.name === partnerName)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const partner = partnerData.find((partner) => partner.name === partnerName)
const partner = partnerData.find(partner => partner.name === partnerName)

可以维持原先格式。

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

幸苦了


const websiteLabel = 'proxify.io'
const websiteUrl = 'https://proxify.io/'
Expand All @@ -25,23 +25,23 @@ const partnerConfig = {

// Hero Section
pageHeroBanner: {
title: 'Find top Vue.js developers for your team',
description1: 'Access certified Vue.js developers available for your next project.',
description2: 'Proxify handles the vetting process to ensure top-tier quality and reliability.',
title: '为你的团队寻找顶级的 Vue.js 开发者',
description1: '访问可用于你的下一个项目的经过认证的 Vue.js 开发者',
description2: 'Proxify 负责筛选过程,以确保顶级的质量和可靠性',
hireButton: {
url: hireUrl,
label: 'Find Vue.js developers now'
label: '立即寻找 Vue.js 开发者'
},
footer: "Get matched with a top Vue.js developer in less than 48 hours",
footer: '在不到 48 小时内与顶级 Vue.js 开发者匹配'
},

// Hero Section
pageJoinSection: {
title: 'Become a listed developer',
description: 'Get a long-term part-time or full-time position at company looking for a Vue.js developer.',
title: '成为一名注册开发者',
description: '获得一个长期的兼职或全职职位,适合正在寻找 Vue.js 开发者的公司',
applyButton: {
url: applyUrl,
label: 'Apply to join'
label: '申请加入'
}
},

Expand All @@ -62,8 +62,10 @@ const partnerConfig = {

scoreDiagram: {
title: 'Engineering excellence score',
prependText: 'The practical score range is 0 to 300. This is the distribution of scores for all evaluated Vue.js developers, and here’s where your candidate scored.',
appendText: 'Data from 3,661 evaluated Vue.js developers and 38,008 applicants.'
prependText:
lxKylin marked this conversation as resolved.
Show resolved Hide resolved
'The practical score range is 0 to 300. This is the distribution of scores for all evaluated Vue.js developers, and here’s where your candidate scored.',
appendText:
'Data from 3,661 evaluated Vue.js developers and 38,008 applicants.'
},

// Proficiency Section
Expand Down