adjust translation string "Select a follow relationship..."
This commit is contained in:
parent
5b48032681
commit
c9afaba0d4
|
@ -11379,9 +11379,9 @@ export interface Locale extends ILocale {
|
||||||
*/
|
*/
|
||||||
"remoteFollowersWarning": string;
|
"remoteFollowersWarning": string;
|
||||||
/**
|
/**
|
||||||
* Select a follow graph...
|
* Select a follow relationship...
|
||||||
*/
|
*/
|
||||||
"selectFollowingList": string;
|
"selectFollowRelationship": string;
|
||||||
}
|
}
|
||||||
declare const locales: {
|
declare const locales: {
|
||||||
[lang: string]: Locale;
|
[lang: string]: Locale;
|
||||||
|
|
|
@ -43,7 +43,7 @@ const columnIcon = computed(() => followingTabIcon(props.column.userList));
|
||||||
|
|
||||||
async function selectList(): Promise<void> {
|
async function selectList(): Promise<void> {
|
||||||
const { canceled, result: newList } = await os.select<FollowingFeedTab>({
|
const { canceled, result: newList } = await os.select<FollowingFeedTab>({
|
||||||
title: i18n.ts.selectFollowingList,
|
title: i18n.ts.selectFollowRelationship,
|
||||||
items: followingFeedTabs.map(t => ({
|
items: followingFeedTabs.map(t => ({
|
||||||
value: t,
|
value: t,
|
||||||
text: followingTabName(t),
|
text: followingTabName(t),
|
||||||
|
@ -97,7 +97,7 @@ const {
|
||||||
const menu: MenuItem[] = [
|
const menu: MenuItem[] = [
|
||||||
{
|
{
|
||||||
icon: columnIcon.value,
|
icon: columnIcon.value,
|
||||||
text: i18n.ts.selectFollowingList,
|
text: i18n.ts.selectFollowRelationship,
|
||||||
action: selectList,
|
action: selectList,
|
||||||
},
|
},
|
||||||
...createOptionsMenu(columnStorage),
|
...createOptionsMenu(columnStorage),
|
||||||
|
|
|
@ -401,4 +401,4 @@ _deck:
|
||||||
_columns:
|
_columns:
|
||||||
following: "Following"
|
following: "Following"
|
||||||
|
|
||||||
selectFollowingList: "Select a follow graph..."
|
selectFollowRelationship: "Select a follow relationship..."
|
||||||
|
|
Loading…
Reference in New Issue