Skip to content

Commit

Permalink
Fix small issues with translation and image display
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldaquino committed Oct 26, 2023
1 parent 7328b65 commit 1bf4d49
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 6 deletions.
18 changes: 17 additions & 1 deletion content/compiled-locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"home.hero.promote-bounties": [
{
"type": 0,
"value": "Promote bounties page"
"value": "Developer bounties"
}
],
"home.hero.subheadline": [
Expand All @@ -71,6 +71,16 @@
"value": "Meet the Damus team"
}
],
"meet_the_team.view_profile": [
{
"type": 0,
"value": "Follow "
},
{
"type": 1,
"value": "shortName"
}
],
"roles.designer": [
{
"type": 0,
Expand All @@ -83,6 +93,12 @@
"value": "Developer"
}
],
"roles.first-business-intern": [
{
"type": 0,
"value": "First Business Intern"
}
],
"roles.founder-and-developer": [
{
"type": 0,
Expand Down
14 changes: 13 additions & 1 deletion content/compiled-locales/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@
"value": "Damusは、あなたがコントロールする新しいソーシャルネットワークです。iOS、iPad、MacOS(M1/M2)で利用可能です。"
}
],
"meet_the_team.headline": [
{
"type": 0,
"value": "ダムスチームに会おう"
}
],
"meet_the_team.view_profile": [
{
"type": 0,
"value": "フォローする"
}
],
"roles.designer": [
{
"type": 0,
Expand All @@ -80,7 +92,7 @@
"roles.first-business-intern": [
{
"type": 0,
"value": "初めてのビジネスインターン"
"value": "ビジネスインターン"
}
],
"roles.founder-and-developer": [
Expand Down
8 changes: 7 additions & 1 deletion content/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"string": "Join TestFlight Beta"
},
"home.hero.promote-bounties": {
"string": "Promote bounties page"
"string": "Developer bounties"
},
"home.hero.subheadline": {
"string": "Your very own social network for your friends or business. Available Now on iOS, iPad and MacOS (M1/M2)"
Expand All @@ -35,12 +35,18 @@
"meet_the_team.headline": {
"string": "Meet the Damus team"
},
"meet_the_team.view_profile": {
"string": "Follow {shortName}"
},
"roles.designer": {
"string": "Designer"
},
"roles.developer": {
"string": "Developer"
},
"roles.first-business-intern": {
"string": "First Business Intern"
},
"roles.founder-and-developer": {
"string": "Founder & Developer"
},
Expand Down
8 changes: 7 additions & 1 deletion content/locales/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,16 @@
"roles.developer": {
"string": "開発者"
},
"meet_the_team.view_profile": {
"string": "フォローする"
},
"roles.designer": {
"string": "デザイナー"
},
"roles.first-business-intern": {
"string": "初めてのビジネスインターン"
"string": "ビジネスインターン"
},
"meet_the_team.headline": {
"string": "ダムスチームに会おう"
}
}
Binary file removed public/team-photos/will-casarin.avif
Binary file not shown.
Binary file added public/team-photos/will-casarin.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/sections/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function Hero() {
style={{ opacity: 0 }}
animate={{ opacity: 1, transition: { delay: 1.5, duration: 1 } }}
>
<FormattedMessage defaultMessage="Promote bounties page" id="home.hero.promote-bounties"/>
<FormattedMessage defaultMessage="Developer bounties" id="home.hero.promote-bounties"/>
<ChevronRight className="ml-2"/>
</motion.div>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/components/sections/MeetTheTeam.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Image from "next/image";

const team = [
{
profilePicture: "/team-photos/will-casarin.avif",
profilePicture: "/team-photos/will-casarin.webp",
roleIntlString: "roles.founder-and-developer",
fullName: "William Casarin",
shortName: "Will",
Expand Down

0 comments on commit 1bf4d49

Please sign in to comment.