mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-02 04:56:06 +02:00
i18n
This commit is contained in:
@@ -1310,6 +1310,7 @@
|
||||
},
|
||||
"info": {
|
||||
"header": "Info",
|
||||
"name": "Name",
|
||||
"id": "Avatar ID",
|
||||
"id_tooltip": "Copy to clipboard",
|
||||
"copy_id": "Copy ID",
|
||||
|
||||
@@ -407,7 +407,7 @@ export const useNotificationStore = defineStore('Notification', () => {
|
||||
const seeQueue = [];
|
||||
const seenIds = new Set();
|
||||
let seeProcessing = false;
|
||||
const SEE_CONCURRENCY = 5;
|
||||
const SEE_CONCURRENCY = 2;
|
||||
|
||||
async function processSeeQueue() {
|
||||
if (seeProcessing) return;
|
||||
|
||||
@@ -79,20 +79,6 @@ export function getColumns({
|
||||
);
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'index',
|
||||
accessorFn: (_row, index) => index + 1,
|
||||
header: ({ column }) =>
|
||||
sortButton({ column, label: 'No.', descFirst: true }),
|
||||
size: 60,
|
||||
enableResizing: false,
|
||||
meta: {
|
||||
class: 'text-right'
|
||||
},
|
||||
cell: ({ row }) => (
|
||||
<span class="text-muted-foreground">{row.index + 1}</span>
|
||||
)
|
||||
},
|
||||
{
|
||||
id: 'thumbnail',
|
||||
header: () => null,
|
||||
@@ -114,8 +100,9 @@ export function getColumns({
|
||||
},
|
||||
{
|
||||
id: 'name',
|
||||
accessorKey: 'name',
|
||||
header: ({ column }) => sortButton({ column, label: 'Name' }),
|
||||
accessorKey: 'Name',
|
||||
header: ({ column }) =>
|
||||
sortButton({ column, label: t('dialog.avatar.info.name') }),
|
||||
size: 200,
|
||||
cell: ({ row }) => {
|
||||
const ref = row.original;
|
||||
@@ -134,7 +121,7 @@ export function getColumns({
|
||||
},
|
||||
{
|
||||
id: 'platforms',
|
||||
header: () => 'Platforms',
|
||||
header: () => t('dialog.avatar.info.platform'),
|
||||
size: 120,
|
||||
enableSorting: false,
|
||||
cell: ({ row }) => {
|
||||
|
||||
Reference in New Issue
Block a user