Skip to content

Commit 3691f9d

Browse files
fix linting error
1 parent 61ee9fd commit 3691f9d

1 file changed

Lines changed: 24 additions & 8 deletions

File tree

src/languages/ja.ts

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2284,22 +2284,38 @@ const translations = {
22842284
},
22852285
addAccountingIntegrationTask: {
22862286
title: ({integrationName, workspaceAccountingLink}) =>
2287-
`${integrationName === CONST.ONBOARDING_ACCOUNTING_MAPPING.other ? '' : '['}${integrationName === CONST.ONBOARDING_ACCOUNTING_MAPPING.other ? '' : integrationName}](${workspaceAccountingLink})${integrationName === CONST.ONBOARDING_ACCOUNTING_MAPPING.other ? '\u3092\u63A5\u7D9A' : '\u3068\u63A5\u7D9A\u3059\u308B'}`,
2287+
(integrationName === CONST.ONBOARDING_ACCOUNTING_MAPPING.other ? '' : '[') +
2288+
(integrationName === CONST.ONBOARDING_ACCOUNTING_MAPPING.other ? '' : integrationName) +
2289+
'](' +
2290+
workspaceAccountingLink +
2291+
')' +
2292+
(integrationName === CONST.ONBOARDING_ACCOUNTING_MAPPING.other ? '\u3092\u63A5\u7D9A' : '\u3068\u63A5\u7D9A\u3059\u308B'),
22882293
description: ({integrationName, workspaceAccountingLink}) =>
2289-
`${integrationName === CONST.ONBOARDING_ACCOUNTING_MAPPING.other ? integrationName + '\u3092\u63A5\u7D9A\u3059\u308B' : integrationName + '\u3068\u63A5\u7D9A\u3059\u308B'}\u3068\u3001\u7D4C\u8CBB\u306E\u81EA\u52D5\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0\u3068\u540C\u671F\u304C\u53EF\u80FD\u306B\u306A\u308A\u3001\u6708\u672B\u306E\u7D50\u7B97\u304C\u5BB9\u6613\u306B\u306A\u308A\u307E\u3059\u3002\n` +
2294+
(integrationName === CONST.ONBOARDING_ACCOUNTING_MAPPING.other
2295+
? integrationName + '\u3092\u63A5\u7D9A\u3059\u308B'
2296+
: integrationName + '\u3068\u63A5\u7D9A\u3059\u308B') +
2297+
'\u3068\u3001\u7D4C\u8CBB\u306E\u81EA\u52D5\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0\u3068\u540C\u671F\u304C\u53EF\u80FD\u306B\u306A\u308A\u3001\u6708\u672B\u306E\u7D50\u7B97\u304C\u5BB9\u6613\u306B\u306A\u308A\u307E\u3059\u3002\n' +
22902298
'\n' +
22912299
'1. *\u8A2D\u5B9A* \u3092\u30AF\u30EA\u30C3\u30AF\u3057\u307E\u3059\u3002\n' +
22922300
'2. *\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9* \u306B\u79FB\u52D5\u3057\u307E\u3059\u3002\n' +
22932301
'3. \u3042\u306A\u305F\u306E\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u3092\u9078\u629E\u3057\u307E\u3059\u3002\n' +
22942302
'4. *\u4F1A\u8A08* \u3092\u30AF\u30EA\u30C3\u30AF\u3057\u307E\u3059\u3002\n' +
2295-
`5. ${integrationName} \u3092\u63A2\u3057\u307E\u3059\u3002\n` +
2303+
'5. ' +
2304+
integrationName +
2305+
' \u3092\u63A2\u3057\u307E\u3059\u3002\n' +
22962306
'6. *\u63A5\u7D9A* \u3092\u30AF\u30EA\u30C3\u30AF\u3057\u307E\u3059\u3002\n' +
22972307
'\n' +
2298-
`${
2299-
integrationName && CONST.connectionsVideoPaths[integrationName]
2300-
? `[\u4F1A\u8A08\u306B\u79FB\u52D5](${workspaceAccountingLink})\u3002\n\n![${integrationName}\u306B\u63A5\u7D9A](${CONST.CLOUDFRONT_URL}/${CONST.connectionsVideoPaths[integrationName]})`
2301-
: `[\u4F1A\u8A08\u306B\u79FB\u52D5](${workspaceAccountingLink})\u3002`
2302-
}`,
2308+
(integrationName && CONST.connectionsVideoPaths[integrationName]
2309+
? '[\u4F1A\u8A08\u306B\u79FB\u52D5](' +
2310+
workspaceAccountingLink +
2311+
')\u3002\n\n![' +
2312+
integrationName +
2313+
'\u306B\u63A5\u7D9A](' +
2314+
CONST.CLOUDFRONT_URL +
2315+
'/' +
2316+
CONST.connectionsVideoPaths[integrationName] +
2317+
')'
2318+
: '[\u4F1A\u8A08\u306B\u79FB\u52D5](' + workspaceAccountingLink + ')\u3002'),
23032319
},
23042320
connectCorporateCardTask: {
23052321
title: ({corporateCardLink}) => `[\u3042\u306A\u305F\u306E\u6CD5\u4EBA\u30AB\u30FC\u30C9](${corporateCardLink})\u3092\u63A5\u7D9A\u3059\u308B`,

0 commit comments

Comments
 (0)