summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorBagas Sanjaya <bagasdotme@gmail.com>2021-02-21 16:59:31 +0700
committerGitHub <noreply@github.com>2021-02-21 17:59:31 +0800
commit1f13229830637224ad5bc96eb957541033d9b7cc (patch)
treef6b986b7ca81306d8b680baa157b4485e01c3135 /options
parentd6068c1cf705e307e660e711f2b3fe0f2769fbb8 (diff)
downloadgitea-1f13229830637224ad5bc96eb957541033d9b7cc.tar.gz
gitea-1f13229830637224ad5bc96eb957541033d9b7cc.zip
Add helper descriptions on new repo page (#14591)
* Add helper descriptions on new repo page Add helpers for: * repo description * .gitignore * license * README * default branch * signature trust model Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com> * Oops, rename trust_model_helper To match similar helper. trust_model_helper_intro -> trust_model_helper Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Diffstat (limited to 'options')
-rw-r--r--options/locale/locale_en-US.ini11
1 files changed, 11 insertions, 0 deletions
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini
index 2690303253..8245df754a 100644
--- a/options/locale/locale_en-US.ini
+++ b/options/locale/locale_en-US.ini
@@ -665,6 +665,7 @@ email_notifications.disable = Disable Email Notifications
email_notifications.submit = Set Email Preference
[repo]
+new_repo_helper = A repository contains all project files, including revision history. Already have it elsewhere? <a href="%s">Migrate repository.</a>
owner = Owner
owner_helper = Some organizations may not show up in the dropdown due to a maximum repository count limit.
repo_name = Repository Name
@@ -687,17 +688,27 @@ use_template = Use this template
generate_repo = Generate Repository
generate_from = Generate From
repo_desc = Description
+repo_desc_helper = Enter short description (optional)
repo_lang = Language
repo_gitignore_helper = Select .gitignore templates.
+repo_gitignore_helper_desc = Choose which files not to track from a list of templates for common languages. Typical artifacts generated by each language's build tools are included on .gitignore by default.
issue_labels = Issue Labels
issue_labels_helper = Select an issue label set.
license = License
license_helper = Select a license file.
+license_helper_desc = A license governs what others can and can't do with your code. Not sure which one is right for your project? See <a target="_blank" rel="noopener noreferrer" href="%s">Choose a license.</a>
readme = README
readme_helper = Select a README file template.
+readme_helper_desc = This is the place where you can write a complete description for your project.
auto_init = Initialize Repository (Adds .gitignore, License and README)
+trust_model_helper = Select trust model for signature verification. Possible options are:
+trust_model_helper_collaborator = Collaborator: Trust signatures by collaborators
+trust_model_helper_committer = Committer: Trust signatures that match committers
+trust_model_helper_collaborator_committer = Collaborator+Committer: Trust signatures by collaborators which match the committer
+trust_model_helper_default = Default: Use the default trust model for this installation
create_repo = Create Repository
default_branch = Default Branch
+default_branch_helper = The default branch is the base branch for pull requests and code commits.
mirror_prune = Prune
mirror_prune_desc = Remove obsolete remote-tracking references
mirror_interval = Mirror Interval (valid time units are 'h', 'm', 's'). 0 to disable automatic sync.