Skip to content

Commit 5349a07

Browse files
committed
Update storage localization and fix modifier order in FavouriteRepositoryItem
- Reordered modifiers in `FavouriteRepositoryItem` to apply `clip` before `clickable` to ensure the ripple effect respects the rounded corners. - Updated the `storage` string translation for Japanese, Korean, Hindi, and Italian locales.
1 parent 9132620 commit 5349a07

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

core/presentation/src/commonMain/composeResources/values-hi/strings-hi.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@
453453
<string name="open_in_app">ऐप में खोलें</string>
454454
<string name="no_github_link_in_clipboard">क्लिपबोर्ड में कोई GitHub लिंक नहीं मिला</string>
455455

456-
<string name="storage">Storage</string>
456+
<string name="storage">संग्रहण</string>
457457
<string name="clear_cache">कैश साफ़ करें</string>
458458
<string name="current_size">वर्तमान आकार:</string>
459459
<string name="clear">साफ़ करें</string>

core/presentation/src/commonMain/composeResources/values-it/strings-it.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@
454454
<string name="open_in_app">Apri nell\'app</string>
455455
<string name="no_github_link_in_clipboard">Nessun link GitHub trovato negli appunti</string>
456456

457-
<string name="storage">Storage</string>
457+
<string name="storage">Archiviazione</string>
458458
<string name="clear_cache">Pulisci cache</string>
459459
<string name="current_size">Dimensione attuale:</string>
460460
<string name="clear">Pulisci</string>

core/presentation/src/commonMain/composeResources/values-ja/strings-ja.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@
417417
<string name="open_in_app">アプリで開く</string>
418418
<string name="no_github_link_in_clipboard">クリップボードにGitHubリンクが見つかりません</string>
419419

420-
<string name="storage">Storage</string>
420+
<string name="storage">ストレージ</string>
421421
<string name="clear_cache">キャッシュをクリア</string>
422422
<string name="current_size">現在のサイズ:</string>
423423
<string name="clear">クリア</string>

core/presentation/src/commonMain/composeResources/values-ko/strings-ko.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@
450450
<string name="open_in_app">앱에서 열기</string>
451451
<string name="no_github_link_in_clipboard">클립보드에서 GitHub 링크를 찾을 수 없습니다</string>
452452

453-
<string name="storage">저장소</string>
453+
<string name="storage">저장 공간</string>
454454
<string name="clear_cache">캐시 지우기</string>
455455
<string name="current_size">현재 크기:</string>
456456
<string name="clear">지우기</string>

feature/favourites/presentation/src/commonMain/kotlin/zed/rainxch/favourites/presentation/components/FavouriteRepositoryItem.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ fun FavouriteRepositoryItem(
6868
Row(
6969
modifier = Modifier
7070
.fillMaxWidth()
71-
.clickable(onClick = onDevProfileClick)
72-
.clip(RoundedCornerShape(24.dp)),
71+
.clip(RoundedCornerShape(24.dp))
72+
.clickable(onClick = onDevProfileClick),
7373
verticalAlignment = Alignment.CenterVertically,
7474
horizontalArrangement = Arrangement.spacedBy(8.dp)
7575
) {

0 commit comments

Comments
 (0)