Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 02d6482

Browse files
committedJan 15, 2024
feat: translates button
1 parent 4352470 commit 02d6482

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
 

‎zubhub_frontend/zubhub/public/locales/en/translation.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@
343343
"unexpected": "Uh oh! Seems like we hit a snag :( Maybe try again later?"
344344
}
345345
},
346-
347346
"createProject": {
347+
"activityProjectCreate": "Create this Project",
348348
"welcomeMsg": {
349349
"primary": "Create Project",
350350
"secondary": "Tell us about your project!"

‎zubhub_frontend/zubhub/public/locales/hi/translation.json

+1
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@
294294
},
295295

296296
"createProject": {
297+
"activityProjectCreate": "यह प्रोजेक्ट बनाएं",
297298
"welcomeMsg": {
298299
"primary": "प्रोजेक्ट बनाएं",
299300
"secondary": "हमें अपनी परियोजना के बारे में बताएं!"

‎zubhub_frontend/zubhub/src/views/activity_details/ActivityDetailsV2.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export default function ActivityDetailsV2(props) {
149149
handleCreateProject();
150150
}}
151151
>
152-
Create this Project
152+
{t('projectDetails.createProject.activityProjectCreate')}
153153
</CustomButton>
154154
<CustomButton
155155
onClick={handleDownload}

0 commit comments

Comments
 (0)
Please sign in to comment.