Skip to content

Commit e28c13b

Browse files
committed
chore: [LAR-150] add translations words
1 parent efaef93 commit e28c13b

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

lang/en/global.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,8 @@
112112
'first_place' => '1st place',
113113
'second_place' => '2nd place',
114114
'third_place' => '3rd place',
115+
'ranking_updated' => 'The rankings are updated weekly.',
116+
'place' => 'Place',
117+
'user' => 'User',
115118

116119
];

lang/fr/global.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,8 @@
112112
'first_place' => '1ere place',
113113
'second_place' => '2e place',
114114
'third_place' => '3e place',
115+
'ranking_updated' => 'Ce classement est mis à jour toutes les semaines.',
116+
'place' => 'Position',
117+
'user' => 'Utilisateur',
115118

116119
];

resources/views/livewire/pages/forum/leaderboard.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class="animate-rotate absolute inset-0 h-full w-full rounded-full bg-[conic-grad
5959
<div class="flex-1 flex items-center px-4 py-2 rounded-lg bg-white dark:bg-gray-800">
6060
<p class="inline-flex items-center gap-2 text-[13px] text-gray-700 dark:text-gray-300">
6161
<x-phosphor-trophy-duotone class="size-5" aria-hidden="true" />
62-
{{ __('Ce classement est mis à jour toutes les semaines.') }}
62+
{{ __('global.ranking_updated') }}
6363
</p>
6464
</div>
6565
</div>
@@ -70,10 +70,10 @@ class="animate-rotate absolute inset-0 h-full w-full rounded-full bg-[conic-grad
7070
<div class="space-y-2">
7171
<div class="grid auto-cols grid-flow-col bg-white rounded-xl font-medium text-sm text-gray-900 px-4 py-3 ring-1 ring-gray-200 dark:text-white dark:ring-white/10 dark:bg-gray-800">
7272
<div class="w-10">
73-
{{ __('Rang') }}
73+
{{ __('global.place') }}
7474
</div>
7575
<div class="w-32">
76-
{{ __('Utilisateur') }}
76+
{{ __('global.user') }}
7777
</div>
7878
<div class="w-24 hidden text-right md:block">
7979
{{ __('global.experience') }}

0 commit comments

Comments
 (0)