Skip to content

Commit

Permalink
fix(projects): use more engaging "contribute" instead of "select" on …
Browse files Browse the repository at this point in the history
…project selection button

Refers #9
  • Loading branch information
ofr1tz committed May 16, 2024
1 parent 379e22d commit 1f21626
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/ProjectMoreInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default defineComponent({
{{ $t('appDialog.cancel') }}
</v-btn>
<v-btn color="primary" @click="selectFun(project)">
{{ $t('projectsView.select') }}
{{ $t('projectsView.contribute') }}
</v-btn>
</v-card-actions>
</v-card>
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@
"projectsView": {
"unknown": "Unbekannt",
"by": "durch",
"contribute": "Beitragen",
"contributor": "Mitwirkende*n | Mitwirkende",
"completed": "abgeschlossen",
"byYou": "durch dich",
"noProjectsAvailable": "Keine Projekte verfügbar",
"select": "Auswählen",
"moreInfo": "Mehr Info",
"filter": "Filter",
"filterLabels": {
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@
"projectsView": {
"unknown": "Unknown",
"by": "by",
"contribute": "Contribute",
"contributor": "contributor | contributors",
"completed": "completed",
"byYou": "by you",
"noProjectsAvailable": "No projects available",
"select": "Select",
"moreInfo": "More info",
"filter": "Filter",
"filterLabels": {
Expand Down
2 changes: 1 addition & 1 deletion src/views/ProjectsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export default defineComponent({
:disabled="projectUnavailable(project)"
@click="selectProject(project)"
>
{{ $t('projectsView.select') }}
{{ $t('projectsView.contribute') }}
</v-btn>
</v-card-actions>
</v-card>
Expand Down

0 comments on commit 1f21626

Please sign in to comment.