-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Split some words from template to improve translation. #11221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
options/locale/locale_en-US.ini
Outdated
settings.add_team_duplicate = Team already has the repository | ||
settings.add_team_success = The team now have access to the repository. | ||
settings.search_team = Search Team... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
settings.search_team = Search Team... | |
settings.search_team = Search Team… |
@@ -66,7 +66,7 @@ | |||
{{.Name}} | |||
</a> | |||
</div> | |||
<div class="ui eight wide column poping up" data-content="Team's permission is set on the team setting page and can't be changed per repository"> | |||
<div class="ui eight wide column poping up" data-content={{$.i18n.Tr "repo.settings.change_team_permission_tip"}}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<div class="ui eight wide column poping up" data-content={{$.i18n.Tr "repo.settings.change_team_permission_tip"}}> | |
<div class="ui eight wide column poping up" data-content="{{$.i18n.Tr "repo.settings.change_team_permission_tip"}}"> |
@@ -79,7 +79,7 @@ | |||
{{end}} | |||
</div> | |||
{{if $allowedToChangeTeams}} | |||
<div class="ui two wide column {{if .IncludesAllRepositories}}poping up{{end}}" {{if .IncludesAllRepositories}}data-content="This team has access to all repositories and can't be removed."{{end}}> | |||
<div class="ui two wide column {{if .IncludesAllRepositories}}poping up{{end}}" {{if .IncludesAllRepositories}} data-content= {{$.i18n.Tr "repo.settings.delete_team_tip"}} {{end}}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<div class="ui two wide column {{if .IncludesAllRepositories}}poping up{{end}}" {{if .IncludesAllRepositories}} data-content= {{$.i18n.Tr "repo.settings.delete_team_tip"}} {{end}}> | |
<div class="ui two wide column {{if .IncludesAllRepositories}}poping up{{end}}" {{if .IncludesAllRepositories}} data-content="{{$.i18n.Tr "repo.settings.delete_team_tip"}}"{{end}}> |
@@ -96,15 +96,15 @@ | |||
<div class="inline field ui left"> | |||
<div id="search-team-box" class="ui search" data-org="{{.OrgName}}"> | |||
<div class="ui input"> | |||
<input class="prompt" name="team" placeholder="Search teams..." autocomplete="off" autofocus required> | |||
<input class="prompt" name="team" placeholder={{$.i18n.Tr "repo.settings.search_team"}} autocomplete="off" autofocus required> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<input class="prompt" name="team" placeholder={{$.i18n.Tr "repo.settings.search_team"}} autocomplete="off" autofocus required> | |
<input class="prompt" name="team" placeholder="{{$.i18n.Tr "repo.settings.search_team"}}" autocomplete="off" autofocus required> |
Codecov Report
@@ Coverage Diff @@
## master #11221 +/- ##
==========================================
- Coverage 43.84% 43.83% -0.02%
==========================================
Files 607 607
Lines 86893 86893
==========================================
- Hits 38098 38086 -12
- Misses 44093 44104 +11
- Partials 4702 4703 +1
Continue to review full report at Codecov.
|
@lafriks this needs your review |
make lg-tm work |
* split some words from template * split some words from template * add " " to mustache expression * split some words from template Co-authored-by: zeripath <[email protected]> Co-authored-by: Lunny Xiao <[email protected]>
As title.