Skip to content

Commit abdf224

Browse files
committed
fix
1 parent 32589a2 commit abdf224

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

options/locale/locale_en-US.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ licenses = Licenses
2727
return_to_gitea = Return to Gitea
2828
more_items = More items
2929

30-
guide.welcome = Welcome to the Gitea.
31-
guide.welcome_desc = Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD.
32-
3330
username = Username
3431
email = Email Address
3532
password = Password
@@ -166,6 +163,10 @@ filter.private = Private
166163
no_results_found = No results found.
167164
internal_error_skipped = Internal error occurred but is skipped: %s
168165

166+
[guide]
167+
explore_repos = Explore repositories
168+
explore_users = Explore users
169+
169170
[search]
170171
search = Search...
171172
type_tooltip = Search type
Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
<div class="ui center segment tw-py-8">
22
<img width="30" height="30" src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{ctx.Locale.Tr "logo"}}" aria-hidden="true">
3-
<h2>{{ctx.Locale.Tr "guide.welcome"}}</h2>
4-
<p>{{ctx.Locale.Tr "guide.welcome_desc"}}</p>
3+
<h2>{{AppName}}</h2>
4+
<div>
5+
<a href="/explore/repos">
6+
{{ctx.Locale.Tr "guide.explore_repos"}}
7+
</a>
8+
<span>·</span>
9+
<a href="/explore/users">
10+
{{ctx.Locale.Tr "guide.explore_users"}}
11+
</a>
12+
</div>
513
</div>

0 commit comments

Comments
 (0)