mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-23 20:54:50 +03:00
Series UI: update copy to speak about branches
At least for now, its more familiar terminology
This commit is contained in:
parent
7624ef5e01
commit
f62883ffdb
@ -221,10 +221,10 @@
|
||||
<div class="branch-emptystate">
|
||||
<EmptyStatePlaceholder bottomMargin={10}>
|
||||
{#snippet title()}
|
||||
This is an empty series
|
||||
This is an empty branch
|
||||
{/snippet}
|
||||
{#snippet caption()}
|
||||
All your commits will land here
|
||||
Create or drag and drop commits here
|
||||
{/snippet}
|
||||
</EmptyStatePlaceholder>
|
||||
</div>
|
||||
|
@ -73,7 +73,7 @@
|
||||
/>
|
||||
{#if $aiGenEnabled && aiConfigurationValid && !disableTitleEdit}
|
||||
<ContextMenuItem
|
||||
label="Generate series name"
|
||||
label="Generate branch name"
|
||||
onclick={() => {
|
||||
onGenerateBranchName();
|
||||
contextMenuEl?.close();
|
||||
@ -121,7 +121,7 @@
|
||||
|
||||
<Modal
|
||||
width="small"
|
||||
title="Rename series"
|
||||
title="Rename branch"
|
||||
bind:this={renameSeriesModal}
|
||||
onSubmit={(close) => {
|
||||
if (newHeadName && newHeadName !== headName) {
|
||||
@ -140,7 +140,7 @@
|
||||
|
||||
<Modal
|
||||
width="small"
|
||||
title="Delete series"
|
||||
title="Delete branch"
|
||||
bind:this={deleteSeriesModal}
|
||||
onSubmit={async (close) => {
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user