mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: tweak words
This commit is contained in:
@ -22,11 +22,9 @@ const UsersSection = () => {
|
|||||||
return (
|
return (
|
||||||
users.length > 0 && (
|
users.length > 0 && (
|
||||||
<div className="w-full mt-2 flex flex-col p-2 bg-gray-50 dark:bg-black rounded-lg">
|
<div className="w-full mt-2 flex flex-col p-2 bg-gray-50 dark:bg-black rounded-lg">
|
||||||
<div className="w-full flex flex-row justify-between items-center">
|
<div className="w-full mb-1 flex flex-row justify-between items-center px-1">
|
||||||
<span className="text-gray-400 font-medium text-sm pl-1">Users</span>
|
<span className="text-gray-400 font-medium text-sm select-none">Users</span>
|
||||||
<IconButton size="sm" onClick={fetchRecommendUsers}>
|
<Icon.RefreshCcw onClick={fetchRecommendUsers} className="text-gray-400 w-4 h-auto cursor-pointer hover:opacity-80" />
|
||||||
<Icon.RefreshCcw className="text-gray-400 w-4 h-auto" />
|
|
||||||
</IconButton>
|
|
||||||
</div>
|
</div>
|
||||||
{users.map((user) => (
|
{users.map((user) => (
|
||||||
<div
|
<div
|
||||||
@ -34,12 +32,8 @@ const UsersSection = () => {
|
|||||||
className="w-full flex flex-row justify-start items-center px-2 py-1.5 hover:bg-gray-100 dark:hover:bg-zinc-900 rounded-lg"
|
className="w-full flex flex-row justify-start items-center px-2 py-1.5 hover:bg-gray-100 dark:hover:bg-zinc-900 rounded-lg"
|
||||||
>
|
>
|
||||||
<Link className="w-full flex flex-row items-center" to={`/u/${encodeURIComponent(user.username)}`} unstable_viewTransition>
|
<Link className="w-full flex flex-row items-center" to={`/u/${encodeURIComponent(user.username)}`} unstable_viewTransition>
|
||||||
<UserAvatar className="mr-2 shrink-0" avatarUrl={user.avatarUrl} />
|
<UserAvatar className="!w-6 !h-6 !rounded-lg mr-2 shrink-0" avatarUrl={user.avatarUrl} />
|
||||||
<div className="w-full flex flex-col justify-center items-start">
|
<span className="text-gray-600 truncate dark:text-gray-400">{user.nickname || user.username}</span>
|
||||||
<span className="text-gray-600 leading-tight max-w-[80%] truncate dark:text-gray-400">
|
|
||||||
{user.nickname || user.username}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
|
@ -43,21 +43,21 @@ const PersonalStatistics = (props: Props) => {
|
|||||||
<div className="w-full flex justify-between items-center">
|
<div className="w-full flex justify-between items-center">
|
||||||
<div className="w-full flex justify-start items-center">
|
<div className="w-full flex justify-start items-center">
|
||||||
<Icon.CalendarDays className="w-4 h-auto mr-1" />
|
<Icon.CalendarDays className="w-4 h-auto mr-1" />
|
||||||
<span className="block text-base sm:text-sm">{t("common.days")}</span>
|
<span className="block text-base sm:text-sm">Days</span>
|
||||||
</div>
|
</div>
|
||||||
<span className="font-mono">{days}</span>
|
<span className="font-mono">{days}</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="w-full flex justify-between items-center">
|
<div className="w-full flex justify-between items-center">
|
||||||
<div className="w-full flex justify-start items-center">
|
<div className="w-full flex justify-start items-center">
|
||||||
<Icon.Library className="w-4 h-auto mr-1" />
|
<Icon.Library className="w-4 h-auto mr-1" />
|
||||||
<span className="block text-base sm:text-sm">{t("common.memos")}</span>
|
<span className="block text-base sm:text-sm">Memos</span>
|
||||||
</div>
|
</div>
|
||||||
{isRequesting ? <Icon.Loader className="animate-spin w-4 h-auto text-gray-400" /> : <span className="font-mono">{memoAmount}</span>}
|
{isRequesting ? <Icon.Loader className="animate-spin w-4 h-auto text-gray-400" /> : <span className="font-mono">{memoAmount}</span>}
|
||||||
</div>
|
</div>
|
||||||
<div className="w-full flex justify-between items-center">
|
<div className="w-full flex justify-between items-center">
|
||||||
<div className="w-full flex justify-start items-center">
|
<div className="w-full flex justify-start items-center">
|
||||||
<Icon.Hash className="w-4 h-auto mr-1" />
|
<Icon.Hash className="w-4 h-auto mr-1" />
|
||||||
<span className="block text-base sm:text-sm">{t("common.tags")}</span>
|
<span className="block text-base sm:text-sm">Tags</span>
|
||||||
</div>
|
</div>
|
||||||
<span className="font-mono">{tags}</span>
|
<span className="font-mono">{tags}</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -75,12 +75,13 @@ const RenameTagDialog: React.FC<Props> = (props: Props) => {
|
|||||||
onChange={handleTagNameInputChange}
|
onChange={handleTagNameInputChange}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<List className="!leading-5" size="sm" marker="disc">
|
<List size="sm" marker="disc">
|
||||||
<ListItem>All your memos with this tag will be updated.</ListItem>
|
<ListItem>
|
||||||
<ListItem>If the number of related memos is large, it will take longer and the server load will become higher.</ListItem>
|
<p className="leading-5">All your memos with this tag will be updated.</p>
|
||||||
|
</ListItem>
|
||||||
</List>
|
</List>
|
||||||
</div>
|
</div>
|
||||||
<div className="w-full flex flex-row justify-end items-center mt-2 space-x-2">
|
<div className="w-full flex flex-row justify-end items-center space-x-2">
|
||||||
<Button color="neutral" variant="plain" disabled={requestState.isLoading} loading={requestState.isLoading} onClick={destroy}>
|
<Button color="neutral" variant="plain" disabled={requestState.isLoading} loading={requestState.isLoading} onClick={destroy}>
|
||||||
{t("common.cancel")}
|
{t("common.cancel")}
|
||||||
</Button>
|
</Button>
|
||||||
|
@ -62,9 +62,7 @@
|
|||||||
"search": "Search",
|
"search": "Search",
|
||||||
"role": "Role",
|
"role": "Role",
|
||||||
"description": "Description",
|
"description": "Description",
|
||||||
"statistics": "Statistics",
|
"statistics": "Statistics"
|
||||||
"days": "Days",
|
|
||||||
"memos": "Memos"
|
|
||||||
},
|
},
|
||||||
"router": {
|
"router": {
|
||||||
"go-to-home": "Go to Home",
|
"go-to-home": "Go to Home",
|
||||||
|
Reference in New Issue
Block a user