loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

i18n: use ellipsis character (#7154)

- Instead of using `...`, use the unicode character for ellipsis `…`.
- According to weblate: Using the Unicode character is in most cases the better approach and looks better rendered, and may sound better with text-to-speech.

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7154
Reviewed-by: 0ko <0ko@noreply.codeberg.org>
Reviewed-by: Otto <otto@codeberg.org>
Co-authored-by: Gusted <postmaster@gusted.xyz>
Co-committed-by: Gusted <postmaster@gusted.xyz>

authored by

Gusted
Gusted
and committed by
Gusted
eb78c661 4f027fe9

+22 -22
+17 -17
options/locale/locale_en-US.ini
··· 166 166 filter.private = Private 167 167 168 168 [search] 169 - search = Search... 169 + search = Search… 170 170 type_tooltip = Search type 171 171 fuzzy = Fuzzy 172 172 fuzzy_tooltip = Include results that also match the search term closely ··· 176 176 exact_tooltip = Include only results that match the exact search term 177 177 regexp = RegExp 178 178 regexp_tooltip = Interpret the search term as a regular expression 179 - repo_kind = Search repos... 180 - user_kind = Search users... 181 - org_kind = Search orgs... 182 - team_kind = Search teams... 183 - code_kind = Search code... 179 + repo_kind = Search repos… 180 + user_kind = Search users… 181 + org_kind = Search orgs… 182 + team_kind = Search teams… 183 + code_kind = Search code… 184 184 code_search_unavailable = Code search is currently not available. Please contact the site administrator. 185 - package_kind = Search packages... 186 - project_kind = Search projects... 187 - branch_kind = Search branches... 188 - commit_kind = Search commits... 189 - runner_kind = Search runners... 185 + package_kind = Search packages… 186 + project_kind = Search projects… 187 + branch_kind = Search branches… 188 + commit_kind = Search commits… 189 + runner_kind = Search runners… 190 190 no_results = No matching results found. 191 - issue_kind = Search issues... 192 - pull_kind = Search pulls... 191 + issue_kind = Search issues… 192 + pull_kind = Search pulls… 193 193 keyword_search_unavailable = Searching by keyword is currently not available. Please contact the site administrator. 194 194 195 195 [aria] ··· 1171 1171 reactions_more = and %d more 1172 1172 unit_disabled = The site administrator has disabled this repository section. 1173 1173 language_other = Other 1174 - adopt_search = Enter username to search for unadopted repositories... (leave blank to find all) 1174 + adopt_search = Enter username to search for unadopted repositories… (leave blank to find all) 1175 1175 adopt_preexisting_label = Adopt files 1176 1176 adopt_preexisting = Adopt pre-existing files 1177 1177 adopt_preexisting_content = Create repository from %s ··· 1258 1258 migrated_from = Migrated from <a href="%[1]s">%[2]s</a> 1259 1259 migrated_from_fake = Migrated from %[1]s 1260 1260 migrate.migrate = Migrate from %s 1261 - migrate.migrating = Migrating from <b>%s</b> ... 1261 + migrate.migrating = Migrating from <b>%s</b> … 1262 1262 migrate.migrating_failed = Migrating from <b>%s</b> failed. 1263 1263 migrate.migrating_failed.error = Failed to migrate: %s 1264 1264 migrate.migrating_failed_no_addr = Migration failed. ··· 2656 2656 settings.lfs_invalid_lock_directory=Cannot lock directory: %s 2657 2657 settings.lfs_lock_already_exists=Lock already exists: %s 2658 2658 settings.lfs_lock=Lock 2659 - settings.lfs_lock_path=Filepath to lock... 2659 + settings.lfs_lock_path=Filepath to lock… 2660 2660 settings.lfs_locks_no_locks=No locks 2661 2661 settings.lfs_lock_file_no_exist=Locked file does not exist in default branch 2662 2662 settings.lfs_force_unlock=Force unlock ··· 2866 2866 ext_wiki = Access the link to an external wiki. The permissions are managed externally. 2867 2867 2868 2868 [graphs] 2869 - component_loading = Loading %s... 2869 + component_loading = Loading %s… 2870 2870 component_loading_failed = Could not load %s 2871 2871 component_loading_info = This might take a bit… 2872 2872 component_failed_to_load = An unexpected error happened.
+1 -1
options/locale_next/locale_en-US.json
··· 12 12 "one": "wants to merge %[1]d commit from <code>%[2]s</code> into <code id=\"%[4]s\">%[3]s</code>", 13 13 "other": "wants to merge %[1]d commits from <code>%[2]s</code> into <code id=\"%[4]s\">%[3]s</code>" 14 14 }, 15 - "search.milestone_kind": "Search milestones...", 15 + "search.milestone_kind": "Search milestones…", 16 16 "incorrect_root_url": "This Forgejo instance is configured to be served on \"%s\". You are currently viewing Forgejo through a different URL, which may cause parts of the application to break. The canonical URL is controlled by Forgejo admins via the ROOT_URL setting in the app.ini." 17 17 }
+1 -1
tests/integration/issue_test.go
··· 80 80 htmlDoc := NewHTMLParser(t, resp.Body) 81 81 search := htmlDoc.doc.Find(".list-header-search > .search > .input > input") 82 82 placeholder, _ := search.Attr("placeholder") 83 - assert.Equal(t, "Search issues...", placeholder) 83 + assert.Equal(t, "Search issues…", placeholder) 84 84 } 85 85 86 86 func TestViewIssuesSortByType(t *testing.T) {
+1 -1
tests/integration/milestone_test.go
··· 21 21 htmlDoc := NewHTMLParser(t, resp.Body) 22 22 search := htmlDoc.doc.Find(".list-header-search > .search > .input > input") 23 23 placeholder, _ := search.Attr("placeholder") 24 - assert.Equal(t, "Search milestones...", placeholder) 24 + assert.Equal(t, "Search milestones…", placeholder) 25 25 } 26 26 27 27 func TestMilestonesCount(t *testing.T) {
+1 -1
tests/integration/pull_test.go
··· 27 27 htmlDoc := NewHTMLParser(t, resp.Body) 28 28 search := htmlDoc.doc.Find(".list-header-search > .search > .input > input") 29 29 placeholder, _ := search.Attr("placeholder") 30 - assert.Equal(t, "Search pulls...", placeholder) 30 + assert.Equal(t, "Search pulls…", placeholder) 31 31 } 32 32 33 33 func TestPullManuallyMergeWarning(t *testing.T) {
+1 -1
tests/integration/repo_collaborator_test.go
··· 33 33 // Veirfy placeholder 34 34 placeholder, exists := page.Find("#search-user-box input").Attr("placeholder") 35 35 assert.True(t, exists) 36 - assert.EqualValues(t, "Search users...", placeholder) 36 + assert.EqualValues(t, "Search users…", placeholder) 37 37 }