Skip to content

Commit 2e6d538

Browse files
committed
Fix translation
1 parent cc9671b commit 2e6d538

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

refactor/src/components/Cart/CartContents.component.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const CartContents = () => {
114114
>
115115
<div className="lg:m-2 xl:m-4 xl:w-1/6 lg:w-1/6 sm:m-2 w-auto">
116116
<span className="block mt-2 font-extrabold">
117-
Remove: <br />
117+
Slett: <br />
118118
</span>
119119
<span className="inline-block mt-4 w-20 h-12 md:w-full lg:w-full xl:w-full">
120120
<Button
@@ -127,21 +127,21 @@ const CartContents = () => {
127127
)
128128
}
129129
>
130-
Remove
130+
Slett
131131
</Button>
132132
</span>
133133
</div>
134134
<div className="lg:m-2 xl:m-4 xl:w-1/6 lg:w-1/6 sm:m-2 w-auto">
135135
<span className="block mt-2 font-extrabold">
136-
Name: <br />
136+
Navn: <br />
137137
</span>
138138
<span className="inline-block mt-4 w-20 h-12 md:w-full lg:w-full xl:w-full">
139139
{item.product.node.name}
140140
</span>
141141
</div>
142142
<div className="lg:m-2 xl:m-4 xl:w-1/6 lg:w-1/6 sm:m-2 w-auto">
143143
<span className="block mt-2 font-extrabold">
144-
Quantity: <br />
144+
Antall: <br />
145145
</span>
146146
<span className="inline-block mt-4 w-20 h-12 md:w-full lg:w-full xl:w-full">
147147
<input
@@ -163,7 +163,7 @@ const CartContents = () => {
163163
</div>
164164
<div className="lg:m-2 xl:m-4 xl:w-1/6 lg:w-1/6 sm:m-2 w-auto">
165165
<span className="block mt-2 font-extrabold">
166-
Subtotal: <br />
166+
Total: <br />
167167
</span>
168168
<span className="inline-block mt-4 w-20 h-12 md:w-full lg:w-full xl:w-full">
169169
{item.subtotal}

0 commit comments

Comments
 (0)