Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@
<div class="flex flex-col gap-3 w-full">
<!-- Log out Button -->
<button
id ="confirm-logout-btn"
class="w-full py-3 px-6 bg-white text-black text-[15px] font-bold rounded-full hover:bg-gray-200 transition-colors"
@click="confirmLogout"
>
Expand All @@ -257,6 +258,7 @@

<!-- Cancel Button -->
<button
id="cancel-logout-btn"
class="w-full py-3 px-6 bg-transparent border border-gray-700 text-primary text-[15px] font-bold rounded-full hover:bg-gray-800/50 transition-colors"
@click="closeLogoutConfirm"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<div class="flex items-center justify-between mt-6 pt-4 border-t border-primary">
<!-- Selection Counter -->
<p class="text-muted text-sm">
{{ selectedInterests.length }} {{ $t('auth.interests.selected') || 'of 1 selected' }}
{{ selectedInterests.length }} {{ $t('auth.interests.selected')}}
</p>

<!-- Next Button -->
Expand Down
2 changes: 1 addition & 1 deletion i18n/locales/ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
"interests": {
"title": "ماذا تريد أن ترى على Yapper؟",
"info": "اختر ما يعجبك، وسنخصص تجربتك في Yapper مع المزيد مما تهتم به.",
"selected": "من 1 تم الاختيار"
"selected": "تم الاختيار"
},
"whoToFollow": {
"title": "لا تفوت",
Expand Down
2 changes: 1 addition & 1 deletion i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
"interests": {
"title": "What do you want to see on Yapper?",
"info": "Choose what you like, and we'll customize your Yapper experience with more of what you're interested in.",
"selected": "of 1 selected"
"selected": "selected"
},
"whoToFollow": {
"title": "Don't miss out",
Expand Down
Loading