enabled i18n for all components
This commit is contained in:
@@ -2,20 +2,26 @@ import { PlusCircleIcon, HomeIcon } from "@heroicons/react/24/outline";
|
||||
import { YearMonth } from "../lib/db-types";
|
||||
import { formatYearMonth } from "../lib/format";
|
||||
import Link from "next/link";
|
||||
|
||||
import { useTranslations } from 'next-intl';
|
||||
|
||||
export interface AddLocationButtonProps {
|
||||
/** year and month at which the new billing location should be addes */
|
||||
yearMonth: YearMonth
|
||||
}
|
||||
|
||||
export const AddLocationButton:React.FC<AddLocationButtonProps> = ({yearMonth}) =>
|
||||
<div className="card card-compact card-bordered bg-base-100 shadow-s my-1">
|
||||
<Link href={`/location/${ formatYearMonth(yearMonth) }/add`} className="card-body tooltip self-center" data-tip="Add a new realestate">
|
||||
<span className='flex self-center mr-[-3em]' data-tip="Add a new realestate">
|
||||
<HomeIcon className="h-[1em] w-[1em] cursor-pointer text-4xl" />
|
||||
<PlusCircleIcon className="h-[1em] w-[1em] cursor-pointer text-xl text-green-500 ml-[-.6em] mt-[-.4em]" />
|
||||
<span className="ml-1 mt-[.4em] text-xs text-left leading-[1.2em]">Add now<br/>realestate</span>
|
||||
</span>
|
||||
</Link>
|
||||
</div>;
|
||||
export const AddLocationButton:React.FC<AddLocationButtonProps> = ({yearMonth}) => {
|
||||
|
||||
const t = useTranslations("home-page.add-location-button");
|
||||
|
||||
return(
|
||||
<div className="card card-compact card-bordered bg-base-100 shadow-s my-1">
|
||||
<Link href={`/location/${ formatYearMonth(yearMonth) }/add`} className="card-body tooltip self-center" data-tip={t("tooltip")}>
|
||||
<span className='flex self-center mr-[-3em]'>
|
||||
<HomeIcon className="h-[1em] w-[1em] cursor-pointer text-4xl" />
|
||||
<PlusCircleIcon className="h-[1em] w-[1em] cursor-pointer text-xl text-green-500 ml-[-.6em] mt-[-.4em]" />
|
||||
<span className="ml-1 mt-[.4em] text-xs text-left leading-[1.2em]">{t("tooltip")}</span>
|
||||
</span>
|
||||
</Link>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user