diff options
author | Jason Song <i@wolfogre.com> | 2022-11-11 17:19:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 17:19:12 +0800 |
commit | 50dd32ede4e776b083ee2c81192c21925294eff5 (patch) | |
tree | 4b2a98b6d4b9cc724d16f35bc8a5f60e0ead808c | |
parent | 2cbea23d700df9a45899e5de40e93e1a73354ce1 (diff) | |
download | gitea-50dd32ede4e776b083ee2c81192c21925294eff5.tar.gz gitea-50dd32ede4e776b083ee2c81192c21925294eff5.zip |
Update message of reach_limit_of_creation (#21757)
When I'm trying to use a user which has no repo numbers limit to create
a repo for a org which has reached the limit, it says "You have already
reached your limit of 5 repositories."
That's confusing. "I" haven't reached the limit, the owner has.
<img width="828" alt="xnip_2022-11-10_11-57-45"
src="https://user-images.githubusercontent.com/9418365/200997290-d0819e40-fb10-4c37-917c-167e2070b4f9.png">
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
-rw-r--r-- | options/locale/locale_en-US.ini | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index e610bc6b28..1d7086ed1d 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -944,8 +944,8 @@ archive.title = This repo is archived. You can view files and clone it, but cann archive.issue.nocomment = This repo is archived. You cannot comment on issues. archive.pull.nocomment = This repo is archived. You cannot comment on pull requests. -form.reach_limit_of_creation_1 = You have already reached your limit of %d repository. -form.reach_limit_of_creation_n = You have already reached your limit of %d repositories. +form.reach_limit_of_creation_1 = The owner has already reached the limit of %d repository. +form.reach_limit_of_creation_n = The owner has already reached the limit of %d repositories. form.name_reserved = The repository name '%s' is reserved. form.name_pattern_not_allowed = The pattern '%s' is not allowed in a repository name. |