Skip to content

Commit 112fcf6

Browse files
authored
Merge pull request #179 from rainxchzed/feat-repo-author
feat(profile): Add developer profile screen
2 parents f54680a + 1a599ff commit 112fcf6

55 files changed

Lines changed: 2791 additions & 75 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

composeApp/src/commonMain/composeResources/values-bn/strings-bn.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,4 +277,51 @@
277277
<string name="dismiss">বন্ধ করুন</string>
278278
<string name="sync_starred_failed">স্টার করা রিপোজিটরি সিঙ্ক করতে ব্যর্থ হয়েছে</string>
279279

280+
<string name="developer_profile_title">ডেভেলপার প্রোফাইল</string>
281+
<string name="open_developer_profile">ডেভেলপার প্রোফাইল খুলুন</string>
282+
283+
<!-- Developer Profile - General -->
284+
<string name="failed_to_load_repositories">রিপোজিটরি লোড করতে ব্যর্থ</string>
285+
<string name="failed_to_load_profile">প্রোফাইল লোড করতে ব্যর্থ</string>
286+
287+
<!-- Developer Profile - Stats -->
288+
<string name="repositories">রিপোজিটরি</string>
289+
<string name="followers">অনুসরণকারী</string>
290+
<string name="following">অনুসরণ করছে</string>
291+
292+
<!-- Developer Profile - Filter & Sort -->
293+
<string name="search_repositories">রিপোজিটরি খুঁজুন…</string>
294+
<string name="clear_search">অনুসন্ধান মুছুন</string>
295+
<string name="filter_all">সব</string>
296+
<string name="filter_with_releases">রিলিজ সহ</string>
297+
<string name="filter_installed">ইনস্টল করা</string>
298+
<string name="filter_favorites">পছন্দের</string>
299+
<string name="sort">সাজান</string>
300+
<string name="sort_recently_updated">সাম্প্রতিক আপডেট</string>
301+
<string name="sort_name">নাম</string>
302+
303+
<!-- Developer Profile - Repository Count -->
304+
<string name="repository_singular">রিপোজিটরি</string>
305+
<string name="repositories_plural">রিপোজিটরি</string>
306+
<string name="showing_x_of_y_repositories">%2$d টির মধ্যে %1$d টি রিপোজিটরি দেখানো হচ্ছে</string>
307+
308+
<!-- Developer Profile - Empty States -->
309+
<string name="no_repos_with_releases">ইনস্টল করার যোগ্য রিলিজ সহ কোনো রিপোজিটরি নেই</string>
310+
<string name="no_installed_repos">কোনো ইনস্টল করা রিপোজিটরি নেই</string>
311+
<string name="no_favorite_repos">কোনো পছন্দের রিপোজিটরি নেই</string>
312+
313+
<!-- Developer Profile - Repository Item -->
314+
<string name="updated_x_ago">%1$s আপডেট করা হয়েছে</string>
315+
<string name="has_release">রিলিজ আছে</string>
316+
317+
<!-- Developer Profile - Relative Time -->
318+
<string name="time_years_ago">%1$d বছর আগে</string>
319+
<string name="time_months_ago">%1$d মাস আগে</string>
320+
<string name="time_days_ago">%1$d দিন আগে</string>
321+
<string name="time_hours_ago">%1$d ঘণ্টা আগে</string>
322+
<string name="time_minutes_ago">%1$d মিনিট আগে</string>
323+
324+
<!-- Developer Profile - Count Formatting -->
325+
<string name="count_millions">%1$dM</string>
326+
<string name="count_thousands">%1$dk</string>
280327
</resources>

composeApp/src/commonMain/composeResources/values-es/strings-es.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,51 @@
224224
<string name="dismiss">Cerrar</string>
225225
<string name="sync_starred_failed">No se pudieron sincronizar los repositorios destacados</string>
226226

227+
<string name="developer_profile_title">Perfil del desarrollador</string>
228+
<string name="open_developer_profile">Abrir perfil de desarrollador</string>
229+
230+
<!-- Developer Profile - General -->
231+
<string name="failed_to_load_repositories">Error al cargar repositorios</string>
232+
<string name="failed_to_load_profile">Error al cargar perfil</string>
233+
234+
<!-- Developer Profile - Stats -->
235+
<string name="repositories">Repositorios</string>
236+
<string name="followers">Seguidores</string>
237+
<string name="following">Siguiendo</string>
238+
239+
<!-- Developer Profile - Filter & Sort -->
240+
<string name="search_repositories">Buscar repositorios…</string>
241+
<string name="clear_search">Borrar búsqueda</string>
242+
<string name="filter_all">Todos</string>
243+
<string name="filter_with_releases">Con lanzamientos</string>
244+
<string name="filter_installed">Instalados</string>
245+
<string name="filter_favorites">Favoritos</string>
246+
<string name="sort">Ordenar</string>
247+
<string name="sort_recently_updated">Actualizados recientemente</string>
248+
<string name="sort_name">Nombre</string>
249+
250+
<!-- Developer Profile - Repository Count -->
251+
<string name="repository_singular">repositorio</string>
252+
<string name="repositories_plural">repositorios</string>
253+
<string name="showing_x_of_y_repositories">Mostrando %1$d de %2$d repositorios</string>
254+
255+
<!-- Developer Profile - Empty States -->
256+
<string name="no_repos_with_releases">No hay repositorios con lanzamientos instalables</string>
257+
<string name="no_installed_repos">No hay repositorios instalados</string>
258+
<string name="no_favorite_repos">No hay repositorios favoritos</string>
259+
260+
<!-- Developer Profile - Repository Item -->
261+
<string name="updated_x_ago">Actualizado hace %1$s</string>
262+
<string name="has_release">Tiene lanzamiento</string>
263+
264+
<!-- Developer Profile - Relative Time -->
265+
<string name="time_years_ago">hace %1$d año(s)</string>
266+
<string name="time_months_ago">hace %1$d mes(es)</string>
267+
<string name="time_days_ago">hace %1$d d</string>
268+
<string name="time_hours_ago">hace %1$d h</string>
269+
<string name="time_minutes_ago">hace %1$d min</string>
270+
271+
<!-- Developer Profile - Count Formatting -->
272+
<string name="count_millions">%1$dM</string>
273+
<string name="count_thousands">%1$dk</string>
227274
</resources>

composeApp/src/commonMain/composeResources/values-fr/strings-fr.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,51 @@
224224
<string name="dismiss">Fermer</string>
225225
<string name="sync_starred_failed">Échec de la synchronisation des dépôts favoris</string>
226226

227+
<string name="developer_profile_title">Profil du développeur</string>
228+
<string name="open_developer_profile">Ouvrir le profil du développeur</string>
229+
230+
<!-- Developer Profile - General -->
231+
<string name="failed_to_load_repositories">Échec du chargement des dépôts</string>
232+
<string name="failed_to_load_profile">Échec du chargement du profil</string>
233+
234+
<!-- Developer Profile - Stats -->
235+
<string name="repositories">Dépôts</string>
236+
<string name="followers">Abonnés</string>
237+
<string name="following">Abonnements</string>
238+
239+
<!-- Developer Profile - Filter & Sort -->
240+
<string name="search_repositories">Rechercher des dépôts…</string>
241+
<string name="clear_search">Effacer la recherche</string>
242+
<string name="filter_all">Tous</string>
243+
<string name="filter_with_releases">Avec versions</string>
244+
<string name="filter_installed">Installés</string>
245+
<string name="filter_favorites">Favoris</string>
246+
<string name="sort">Trier</string>
247+
<string name="sort_recently_updated">Récemment mis à jour</string>
248+
<string name="sort_name">Nom</string>
249+
250+
<!-- Developer Profile - Repository Count -->
251+
<string name="repository_singular">dépôt</string>
252+
<string name="repositories_plural">dépôts</string>
253+
<string name="showing_x_of_y_repositories">Affichage de %1$d sur %2$d dépôts</string>
254+
255+
<!-- Developer Profile - Empty States -->
256+
<string name="no_repos_with_releases">Aucun dépôt avec des versions installables</string>
257+
<string name="no_installed_repos">Aucun dépôt installé</string>
258+
<string name="no_favorite_repos">Aucun dépôt favori</string>
259+
260+
<!-- Developer Profile - Repository Item -->
261+
<string name="updated_x_ago">Mis à jour %1$s</string>
262+
<string name="has_release">A une version</string>
263+
264+
<!-- Developer Profile - Relative Time -->
265+
<string name="time_years_ago">il y a %1$d an(s)</string>
266+
<string name="time_months_ago">il y a %1$d mois</string>
267+
<string name="time_days_ago">il y a %1$d j</string>
268+
<string name="time_hours_ago">il y a %1$d h</string>
269+
<string name="time_minutes_ago">il y a %1$d min</string>
270+
271+
<!-- Developer Profile - Count Formatting -->
272+
<string name="count_millions">%1$dM</string>
273+
<string name="count_thousands">%1$dk</string>
227274
</resources>

composeApp/src/commonMain/composeResources/values-it/strings-it.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,4 +273,51 @@
273273
<string name="dismiss">Chiudi</string>
274274
<string name="sync_starred_failed">Impossibile sincronizzare i repository preferiti</string>
275275

276+
<string name="developer_profile_title">Profilo dello sviluppatore</string>
277+
<string name="open_developer_profile">Apri il profilo dello sviluppatore</string>
278+
279+
<!-- Developer Profile - General -->
280+
<string name="failed_to_load_repositories">Impossibile caricare i repository</string>
281+
<string name="failed_to_load_profile">Impossibile caricare il profilo</string>
282+
283+
<!-- Developer Profile - Stats -->
284+
<string name="repositories">Repository</string>
285+
<string name="followers">Follower</string>
286+
<string name="following">Seguiti</string>
287+
288+
<!-- Developer Profile - Filter & Sort -->
289+
<string name="search_repositories">Cerca repository…</string>
290+
<string name="clear_search">Cancella ricerca</string>
291+
<string name="filter_all">Tutti</string>
292+
<string name="filter_with_releases">Con release</string>
293+
<string name="filter_installed">Installati</string>
294+
<string name="filter_favorites">Preferiti</string>
295+
<string name="sort">Ordina</string>
296+
<string name="sort_recently_updated">Aggiornati di recente</string>
297+
<string name="sort_name">Nome</string>
298+
299+
<!-- Developer Profile - Repository Count -->
300+
<string name="repository_singular">repository</string>
301+
<string name="repositories_plural">repository</string>
302+
<string name="showing_x_of_y_repositories">Visualizzazione di %1$d su %2$d repository</string>
303+
304+
<!-- Developer Profile - Empty States -->
305+
<string name="no_repos_with_releases">Nessun repository con release installabili</string>
306+
<string name="no_installed_repos">Nessun repository installato</string>
307+
<string name="no_favorite_repos">Nessun repository preferito</string>
308+
309+
<!-- Developer Profile - Repository Item -->
310+
<string name="updated_x_ago">Aggiornato %1$s fa</string>
311+
<string name="has_release">Ha una release</string>
312+
313+
<!-- Developer Profile - Relative Time -->
314+
<string name="time_years_ago">%1$d a fa</string>
315+
<string name="time_months_ago">%1$d m fa</string>
316+
<string name="time_days_ago">%1$d g fa</string>
317+
<string name="time_hours_ago">%1$d h fa</string>
318+
<string name="time_minutes_ago">%1$d min fa</string>
319+
320+
<!-- Developer Profile - Count Formatting -->
321+
<string name="count_millions">%1$dM</string>
322+
<string name="count_thousands">%1$dk</string>
276323
</resources>

composeApp/src/commonMain/composeResources/values-ja/strings-ja.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,51 @@
224224
<string name="dismiss">閉じる</string>
225225
<string name="sync_starred_failed">スター付きリポジトリの同期に失敗しました</string>
226226

227+
<string name="developer_profile_title">開発者プロフィール</string>
228+
<string name="open_developer_profile">開発者プロフィールを開く</string>
229+
230+
<!-- Developer Profile - General -->
231+
<string name="failed_to_load_repositories">リポジトリの読み込みに失敗しました</string>
232+
<string name="failed_to_load_profile">プロフィールの読み込みに失敗しました</string>
233+
234+
<!-- Developer Profile - Stats -->
235+
<string name="repositories">リポジトリ</string>
236+
<string name="followers">フォロワー</string>
237+
<string name="following">フォロー中</string>
238+
239+
<!-- Developer Profile - Filter & Sort -->
240+
<string name="search_repositories">リポジトリを検索…</string>
241+
<string name="clear_search">検索をクリア</string>
242+
<string name="filter_all">すべて</string>
243+
<string name="filter_with_releases">リリースあり</string>
244+
<string name="filter_installed">インストール済み</string>
245+
<string name="filter_favorites">お気に入り</string>
246+
<string name="sort">並べ替え</string>
247+
<string name="sort_recently_updated">最近更新</string>
248+
<string name="sort_name">名前</string>
249+
250+
<!-- Developer Profile - Repository Count -->
251+
<string name="repository_singular">リポジトリ</string>
252+
<string name="repositories_plural">リポジトリ</string>
253+
<string name="showing_x_of_y_repositories">%2$d件中%1$d件のリポジトリを表示</string>
254+
255+
<!-- Developer Profile - Empty States -->
256+
<string name="no_repos_with_releases">インストール可能なリリースを持つリポジトリがありません</string>
257+
<string name="no_installed_repos">インストール済みのリポジトリがありません</string>
258+
<string name="no_favorite_repos">お気に入りのリポジトリがありません</string>
259+
260+
<!-- Developer Profile - Repository Item -->
261+
<string name="updated_x_ago">%1$sに更新</string>
262+
<string name="has_release">リリースあり</string>
263+
264+
<!-- Developer Profile - Relative Time -->
265+
<string name="time_years_ago">%1$d 年前</string>
266+
<string name="time_months_ago">%1$d ヶ月前</string>
267+
<string name="time_days_ago">%1$d 日前</string>
268+
<string name="time_hours_ago">%1$d 時間前</string>
269+
<string name="time_minutes_ago">%1$d 分前</string>
270+
271+
<!-- Developer Profile - Count Formatting -->
272+
<string name="count_millions">%1$dM</string>
273+
<string name="count_thousands">%1$dk</string>
227274
</resources>

composeApp/src/commonMain/composeResources/values-kr/strings-kr.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,4 +275,51 @@
275275
<string name="dismiss">닫기</string>
276276
<string name="sync_starred_failed">별표 저장소 동기화에 실패했습니다</string>
277277

278+
<string name="developer_profile_title">개발자 프로필</string>
279+
<string name="open_developer_profile">개발자 프로필 열기</string>
280+
281+
<!-- Developer Profile - General -->
282+
<string name="failed_to_load_repositories">저장소를 불러오지 못했습니다</string>
283+
<string name="failed_to_load_profile">프로필을 불러오지 못했습니다</string>
284+
285+
<!-- Developer Profile - Stats -->
286+
<string name="repositories">저장소</string>
287+
<string name="followers">팔로워</string>
288+
<string name="following">팔로잉</string>
289+
290+
<!-- Developer Profile - Filter & Sort -->
291+
<string name="search_repositories">저장소 검색…</string>
292+
<string name="clear_search">검색 지우기</string>
293+
<string name="filter_all">전체</string>
294+
<string name="filter_with_releases">릴리스 포함</string>
295+
<string name="filter_installed">설치됨</string>
296+
<string name="filter_favorites">즐겨찾기</string>
297+
<string name="sort">정렬</string>
298+
<string name="sort_recently_updated">최근 업데이트</string>
299+
<string name="sort_name">이름</string>
300+
301+
<!-- Developer Profile - Repository Count -->
302+
<string name="repository_singular">저장소</string>
303+
<string name="repositories_plural">저장소</string>
304+
<string name="showing_x_of_y_repositories">총 %2$d개 중 %1$d개의 저장소 표시</string>
305+
306+
<!-- Developer Profile - Empty States -->
307+
<string name="no_repos_with_releases">설치 가능한 릴리스가 있는 저장소가 없습니다</string>
308+
<string name="no_installed_repos">설치된 저장소가 없습니다</string>
309+
<string name="no_favorite_repos">즐겨찾기 저장소가 없습니다</string>
310+
311+
<!-- Developer Profile - Repository Item -->
312+
<string name="updated_x_ago">%1$s 업데이트됨</string>
313+
<string name="has_release">릴리스 있음</string>
314+
315+
<!-- Developer Profile - Relative Time -->
316+
<string name="time_years_ago">%1$d 년 전</string>
317+
<string name="time_months_ago">%1$d 개월 전</string>
318+
<string name="time_days_ago">%1$d 일 전</string>
319+
<string name="time_hours_ago">%1$d 시간 전</string>
320+
<string name="time_minutes_ago">%1$d 분 전</string>
321+
322+
<!-- Developer Profile - Count Formatting -->
323+
<string name="count_millions">%1$dM</string>
324+
<string name="count_thousands">%1$dk</string>
278325
</resources>

composeApp/src/commonMain/composeResources/values-pl/strings-pl.xml

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,4 +241,51 @@
241241
<string name="dismiss">Zamknij</string>
242242
<string name="sync_starred_failed">Nie udało się zsynchronizować oznaczonych gwiazdką repozytoriów</string>
243243

244-
</resources>
244+
<string name="developer_profile_title">Profil dewelopera</string>
245+
<string name="open_developer_profile">Otwórz profil dewelopera</string>
246+
247+
<!-- Developer Profile - General -->
248+
<string name="failed_to_load_repositories">Nie udało się załadować repozytoriów</string>
249+
<string name="failed_to_load_profile">Nie udało się załadować profilu</string>
250+
251+
<!-- Developer Profile - Stats -->
252+
<string name="repositories">Repozytoria</string>
253+
<string name="followers">Obserwujący</string>
254+
<string name="following">Obserwowani</string>
255+
256+
<!-- Developer Profile - Filter & Sort -->
257+
<string name="search_repositories">Szukaj repozytoriów…</string>
258+
<string name="clear_search">Wyczyść wyszukiwanie</string>
259+
<string name="filter_all">Wszystkie</string>
260+
<string name="filter_with_releases">Z wydaniami</string>
261+
<string name="filter_installed">Zainstalowane</string>
262+
<string name="filter_favorites">Ulubione</string>
263+
<string name="sort">Sortuj</string>
264+
<string name="sort_recently_updated">Ostatnio zaktualizowane</string>
265+
<string name="sort_name">Nazwa</string>
266+
267+
<!-- Developer Profile - Repository Count -->
268+
<string name="repository_singular">repozytorium</string>
269+
<string name="repositories_plural">repozytoriów</string>
270+
<string name="showing_x_of_y_repositories">Wyświetlanie %1$d z %2$d repozytoriów</string>
271+
272+
<!-- Developer Profile - Empty States -->
273+
<string name="no_repos_with_releases">Brak repozytoriów z instalowalnymi wydaniami</string>
274+
<string name="no_installed_repos">Brak zainstalowanych repozytoriów</string>
275+
<string name="no_favorite_repos">Brak ulubionych repozytoriów</string>
276+
277+
<!-- Developer Profile - Repository Item -->
278+
<string name="updated_x_ago">Zaktualizowano %1$s</string>
279+
<string name="has_release">Ma wydanie</string>
280+
281+
<!-- Developer Profile - Relative Time -->
282+
<string name="time_years_ago">%1$d lat temu</string>
283+
<string name="time_months_ago">%1$d mies temu</string>
284+
<string name="time_days_ago">%1$d d temu</string>
285+
<string name="time_hours_ago">%1$d h temu</string>
286+
<string name="time_minutes_ago">%1$d min temu</string>
287+
288+
<!-- Developer Profile - Count Formatting -->
289+
<string name="count_millions">%1$dM</string>
290+
<string name="count_thousands">%1$dk</string>
291+
</resources>

0 commit comments

Comments
 (0)