mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-28 21:36:36 +02:00
Compare commits
2 Commits
adc9e30266
...
61c8e996d3
| Author | SHA1 | Date | |
|---|---|---|---|
| 61c8e996d3 | |||
| ed80f06e72 |
@@ -799,7 +799,8 @@
|
|||||||
"playerbarWaveformStretch": "波形拉伸",
|
"playerbarWaveformStretch": "波形拉伸",
|
||||||
"playerbarWaveformStretch_description": "拉伸波形來填補可用空間",
|
"playerbarWaveformStretch_description": "拉伸波形來填補可用空間",
|
||||||
"preventSuspendOnPlayback_description": "音樂播放時防止應用程式進入休眠",
|
"preventSuspendOnPlayback_description": "音樂播放時防止應用程式進入休眠",
|
||||||
"preventSuspendOnPlayback": "在播放時防止應用程式暫停"
|
"preventSuspendOnPlayback": "在播放時防止應用程式暫停",
|
||||||
|
"hotkey_listShowPlayingSong": "在清單中顯示正在播放的歌曲"
|
||||||
},
|
},
|
||||||
"table": {
|
"table": {
|
||||||
"config": {
|
"config": {
|
||||||
@@ -952,7 +953,9 @@
|
|||||||
"addOrRemoveFromSelection": "新增或移除選取項目",
|
"addOrRemoveFromSelection": "新增或移除選取項目",
|
||||||
"selectAll": "全選",
|
"selectAll": "全選",
|
||||||
"selectRangeOfItems": "批量選取",
|
"selectRangeOfItems": "批量選取",
|
||||||
"goToCurrent": "前往當前項目"
|
"goToCurrent": "前往當前項目",
|
||||||
|
"expandAllFolders": "展開所有資料夾",
|
||||||
|
"collapseAllFolders": "摺疊所有資料夾"
|
||||||
},
|
},
|
||||||
"entity": {
|
"entity": {
|
||||||
"album_other": "專輯",
|
"album_other": "專輯",
|
||||||
|
|||||||
@@ -29,8 +29,7 @@ export const DragPreview = memo(({ data }: DragPreviewProps) => {
|
|||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const itemCount = items.length;
|
const itemCount = items.length;
|
||||||
const firstItem = items[0];
|
const firstItem = items[0];
|
||||||
const folderName =
|
const folderName = data.type === DragTarget.SIDEBAR_PLAYLIST_FOLDER ? data.id[0] : undefined;
|
||||||
data.type === DragTarget.SIDEBAR_PLAYLIST_FOLDER ? data.id[0] : undefined;
|
|
||||||
const itemName = folderName || (firstItem ? getItemName(firstItem) : 'Item');
|
const itemName = folderName || (firstItem ? getItemName(firstItem) : 'Item');
|
||||||
|
|
||||||
const itemImage = useItemImageUrl({
|
const itemImage = useItemImageUrl({
|
||||||
|
|||||||
Reference in New Issue
Block a user