Skip to content

Commit 70a786f

Browse files
authored
Merge pull request #829 from evershopcommerce/theming
[BUG] Translation bug #741
2 parents 1035c42 + f028de6 commit 70a786f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

packages/evershop/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,8 @@
226226
"webpackbar": "^5.0.2",
227227
"winston": "^3.3.3",
228228
"yargs": "^17.7.2",
229-
"zero-decimal-currencies": "^1.2.0"
229+
"zero-decimal-currencies": "^1.2.0",
230+
"execa": "^9.6.0"
230231
},
231232
"devDependencies": {
232233
"@parcel/watcher": "^2.5.1",
@@ -239,7 +240,6 @@
239240
"@types/pg": "^8.15.2",
240241
"@types/react": "^19.1.2",
241242
"copyfiles": "^2.4.1",
242-
"execa": "^9.6.0",
243243
"typescript": "^5.8.3"
244244
}
245245
}

packages/evershop/src/components/frontStore/customer/LoginForm.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ export const CustomerLoginForm: React.FC<{
7272
default: (
7373
<InputField
7474
prefixIcon={<EnvelopeIcon className="h-5 w-5" />}
75-
label="Email"
75+
label={_('Email')}
7676
name="email"
77-
placeholder="Email"
77+
placeholder={_('Email')}
7878
required
7979
validation={{
8080
required: _('Email is required')
@@ -89,9 +89,9 @@ export const CustomerLoginForm: React.FC<{
8989
default: (
9090
<PasswordField
9191
prefixIcon={<LockClosedIcon className="h-5 w-5" />}
92-
label="Password"
92+
label={_('Password')}
9393
name="password"
94-
placeholder="Password"
94+
placeholder={_('Password')}
9595
required
9696
validation={{
9797
required: _('Password is required')

packages/evershop/src/lib/webpack/createBaseConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function createBaseConfig(isServer) {
4141
}
4242
},
4343
{
44-
test: /^[A-Z].*\.js$/,
44+
test: /\.js$/,
4545
exclude: {
4646
and: [/node_modules/],
4747
not: [

0 commit comments

Comments
 (0)