mirror of
https://github.com/silvanocerza/github-gitless-sync.git
synced 2026-07-22 12:10:28 +00:00
Correctly use sentence case in UI
This commit is contained in:
parent
65f77c5720
commit
083e8db779
2 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ export default class GitHubSyncSettingsTab extends PluginSettingTab {
|
|||
|
||||
let tokenInput: TextComponent;
|
||||
new Setting(containerEl)
|
||||
.setName("GitHub Token")
|
||||
.setName("GitHub token")
|
||||
.setDesc(
|
||||
"A personal access token or a fine-grained token with read and write access to your repository",
|
||||
)
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ export class ConflictsResolutionView extends ItemView {
|
|||
}
|
||||
|
||||
getDisplayText() {
|
||||
return "Conflicts Resolution";
|
||||
return "Conflicts resolution";
|
||||
}
|
||||
|
||||
private resolveAllConflicts(resolutions: ConflictResolution[]) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue