Compare commits

..

No commits in common. "d07552424c388b608882b42abb222058d0d6795a" and "3a16af4b4b6881f880bf5d04ebd40404f4e87c62" have entirely different histories.

9 changed files with 8 additions and 19 deletions

4
locales/index.d.ts vendored
View File

@ -5378,10 +5378,6 @@ export interface Locale extends ILocale {
*
*/
"top": string;
/**
*
*/
"embed": string;
"_chat": {
/**
*

View File

@ -1340,7 +1340,6 @@ compress: "圧縮"
right: "右"
bottom: "下"
top: "上"
embed: "埋め込み"
_chat:
noMessagesYet: "まだメッセージはありません"

View File

@ -7,9 +7,9 @@
bg: '#232125',
fg: '#efdab9',
link: '#78b0a0',
warn: '#ffd152',
warn: '#ecb637',
badge: '#31b1ce',
error: '#ff6652',
error: '#ec4137',
focus: ':alpha<0.3<@accent',
navBg: '@panel',
navFg: '@fg',
@ -24,7 +24,7 @@
hashtag: '#ff9156',
mention: '#ffd152',
modalBg: 'rgba(0, 0, 0, 0.5)',
success: '#78b07f',
success: '#86b300',
indicator: '@accent',
mentionMe: '#fb5d38',
messageBg: '@bg',

View File

@ -22,8 +22,5 @@
mentionMe: 'rgb(212, 210, 76)',
hashtag: '#5bcbb0',
link: '@accent',
success: '@accent',
warn: 'rgb(255, 213, 82)',
error: 'rgb(255, 105, 82)',
},
}

View File

@ -22,8 +22,5 @@
mentionMe: '#de6161',
hashtag: '#68bad0',
link: '#a1c758',
error: '#ce5441',
warn: '#d0b868',
success: '#a1c758',
},
}

View File

@ -150,7 +150,7 @@ const headerActions = computed(() => clip.value && isOwned.value ? [{
},
}, {
icon: 'ti ti-code',
text: i18n.ts.embed,
text: i18n.ts.genEmbedCode,
action: () => {
genEmbedCode('clips', clip.value!.id);
},

View File

@ -56,7 +56,7 @@ const headerActions = computed(() => [{
label: i18n.ts.more,
handler: (ev: MouseEvent) => {
os.popupMenu([{
text: i18n.ts.embed,
text: i18n.ts.genEmbedCode,
icon: 'ti ti-code',
action: () => {
genEmbedCode('tags', props.tag);

View File

@ -331,7 +331,7 @@ export function getNoteMenu(props: {
},
});
} else {
menuItems.push(getNoteEmbedCodeMenu(appearNote, i18n.ts.embed));
menuItems.push(getNoteEmbedCodeMenu(appearNote, i18n.ts.genEmbedCode));
}
if (isSupportShare()) {
@ -489,7 +489,7 @@ export function getNoteMenu(props: {
},
});
} else {
menuItems.push(getNoteEmbedCodeMenu(appearNote, i18n.ts.embed));
menuItems.push(getNoteEmbedCodeMenu(appearNote, i18n.ts.genEmbedCode));
}
}

View File

@ -198,7 +198,7 @@ export function getUserMenu(user: Misskey.entities.UserDetailed, router: Router
} else {
menuItems.push({
icon: 'ti ti-code',
text: i18n.ts.embed,
text: i18n.ts.genEmbedCode,
type: 'parent',
children: [{
text: i18n.ts.noteOfThisUser,