aboutsummaryrefslogtreecommitdiff
path: root/conf/locale/locale_en-US.ini
Commit message (Collapse)AuthorAge
...
* Minor fixes for #2745Unknwon2016-03-03
|
* Repo setting to delete and disable wikiJosh Frye2016-03-03
|
* Post work for #2637Unknwon2016-02-27
| | | | Improve test cases, config settings, also show SSH config settings on admin config panel.
* Minor fix for #2660Unknwon2016-02-24
|
* Test mailer button. Addresses #1531Josh Frye2016-02-24
|
* #1821 add actions for close and reopen issuesUnknwon2016-02-22
|
* Fix #857Unknwon2016-02-20
|
* LDAP: Fetch attributes in Bind DN context optionAdam Strzelecki2016-02-20
| | | | | | | | | This is feature is workaround for #2628 (JumpCloud) and some other services that allow LDAP search only under BindDN user account, but not allow any LDAP search query in logged user DN context. Such approach is an alternative to minimal permissions security pattern for BindDN user.
* #2633 fix removed config optionUnknwon2016-02-16
|
* Minor fix for #2624Unknwon2016-02-15
|
* Merge pull request #2624 from mhartkorn/convert-mirror-to-repoUnknwon2016-02-15
|\ | | | | Convert mirrors to regular repositories
| * Refactored according to suggestionsMartin Hartkorn2016-02-14
| |
| * Convert mirrors to regular repositories.Martin Hartkorn2016-02-14
| |
* | fix #2454Unknwon2016-02-14
|/
* Add helper text for log path.Josh Frye2016-02-12
|
* Add install option for log pathJosh Frye2016-02-12
|
* Improve db path prompt when installUnknwon2016-02-07
|
* Fixes small typotechwolf122016-02-05
|
* #2554 reinitialize all repos from the dbUnknwon2016-02-04
| | | | - Update locales
* Minor fix for #2444Unknwon2016-02-01
|
* Change en-us localization "mirror from" to "mirror of"Patrik2016-02-01
|
* #2497 incorrect error handle for team nameUnknwon2016-01-29
|
* Fix grammar in deploy key sectionSaren Currie2016-01-27
|
* fix #2350Unknwon2016-01-07
|
* Changed name from inline to unifiedKim "BKC" Carlbäcker2016-01-05
|
* i18n-fix for split-viewKim "BKC" Carlbäcker2016-01-05
|
* #1692 APIs: Users FollowersUnknwon2015-12-21
| | | | | - User profile un/follow - List user's followers/following
* #2103 #2181 improvments of highlight class nameUnknwon2015-12-16
|
* Minor typo in en-US localeToni2015-12-16
| | | metadata*
* Fix typoToni2015-12-16
| | | take*
* #2154 disable change user for non-local usersUnknwon2015-12-11
| | | | - #2153 remove require for gravatar
* #2114 External URL for wikiUnknwon2015-12-11
|
* Minor typo in en-US locale: gloabl -> globalJulien Pivotto2015-12-11
|
* #1938 #1374 disable password change for non-local usersUnknwon2015-12-10
|
* #1301 "read-only" usersUnknwon2015-12-10
|
* #1575 Limit repo creationUnknwon2015-12-10
|
* Reword messages for PR auto merging (#2117)Angus Gibson2015-12-10
|
* #2037 Add "New Mirror" button on DashboardUnknwon2015-12-09
|
* Only show comparison link for >2 commits #1110Angus Gibson2015-12-09
| | | | | | | We can look at the PushCommits object to see how many commits were included in a commit, and add some template logic to only show the comparison link when there are at least 2 commits in a push. We also correct the link to display the number of commits.
* #1984 Better mirror repo managementUnknwon2015-12-08
|
* #2063 Ability to delete repo from admin panelUnknwon2015-12-05
|
* fix #2105 and fix #1857Unknwon2015-12-05
|
* #2052 advanced select ops for system noticesUnknwon2015-12-05
|
* fix #1829 and fix #890Unknwon2015-12-04
|
* Translation: Add missing entry for new "code" tabAdam Strzelecki2015-12-02
| | | | | | | | We have new tab, but we had no entry. That's why it was showing "code" (lowercase) as this is text id, where we were expecting properly title cased "Code" to be shown in English version. Also add Polish translation "code=Kod".
* Merge pull request #2081 from angus-g/en-transUnknwon2015-12-01
|\ | | | | Update English translations
| * Fix casing in English translationAngus Gibson2015-12-02
| |
| * Update English translationsAngus Gibson2015-12-02
| | | | | | | | Just some phrasing changes to make the English translations sound more natural.
* | #2052 Ability to batch delete system noticesUnknwon2015-12-01
|/
* LDAP: Optional user name attribute specificationAdam Strzelecki2015-12-02
| | | | | | | | | | | | | | | Consider following LDAP search query example: (&(objectClass=Person)(|(uid=%s)(mail=%s))) Right now on first login attempt Gogs will use the text supplied on login form as the newly created user name. In example query above the text matches against both e-mail or user name. So if user puts the e-mail then the new Gogs user name will be e-mail which may be undesired. Using optional user name attribute setting we can explicitly say we want Gogs user name to be certain LDAP attribute eg. `uid`, so even user will use e-mail to login 1st time, the new account will receive correct user name.