adjust translation string "Select a follow relationship..."

This commit is contained in:
Hazelnoot 2024-11-17 10:31:04 -05:00
parent 5b48032681
commit c9afaba0d4
3 changed files with 5 additions and 5 deletions

View file

@ -43,7 +43,7 @@ const columnIcon = computed(() => followingTabIcon(props.column.userList));
async function selectList(): Promise<void> {
const { canceled, result: newList } = await os.select<FollowingFeedTab>({
title: i18n.ts.selectFollowingList,
title: i18n.ts.selectFollowRelationship,
items: followingFeedTabs.map(t => ({
value: t,
text: followingTabName(t),
@ -97,7 +97,7 @@ const {
const menu: MenuItem[] = [
{
icon: columnIcon.value,
text: i18n.ts.selectFollowingList,
text: i18n.ts.selectFollowRelationship,
action: selectList,
},
...createOptionsMenu(columnStorage),