mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-22 12:41:31 +10:00
chore(i18n): update zu-ZA translations
This commit is contained in:
@ -106,7 +106,7 @@ export const SectionBase = <T extends SectionItem>({ id, title, description }: P
|
||||
<Plus size={14} />
|
||||
<span className="font-medium">
|
||||
{t({
|
||||
message: "Add New Item",
|
||||
message: "Add a new item",
|
||||
context: "For example, add a new work experience, or add a new profile.",
|
||||
})}
|
||||
</span>
|
||||
@ -145,7 +145,7 @@ export const SectionBase = <T extends SectionItem>({ id, title, description }: P
|
||||
<Plus />
|
||||
<span>
|
||||
{t({
|
||||
message: "Add New Item",
|
||||
message: "Add a new item",
|
||||
context: "For example, add a new work experience, or add a new profile.",
|
||||
})}
|
||||
</span>
|
||||
|
||||
@ -109,8 +109,8 @@ export const SectionOptions = ({ id }: Props) => {
|
||||
<DropdownMenuSubContent>
|
||||
<DropdownMenuRadioGroup value={`${section.columns}`} onValueChange={onChangeColumns}>
|
||||
{Array.from({ length: 5 }, (_, i) => i + 1).map((value) => (
|
||||
<DropdownMenuRadioItem value={`${value}`}>
|
||||
{plural(value, { one: "Column", other: "Columns" })}
|
||||
<DropdownMenuRadioItem key={value} value={`${value}`}>
|
||||
{value} {plural(value, { one: "Column", other: "Columns" })}
|
||||
</DropdownMenuRadioItem>
|
||||
))}
|
||||
</DropdownMenuRadioGroup>
|
||||
|
||||
Reference in New Issue
Block a user