Skip to content

Commit 6d48a1f

Browse files
committed
see #203 : fix config and text
1 parent c6a8046 commit 6d48a1f

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

web/src/ui/i18n/sill_en.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,10 @@
271271
"softwareType-stack": "Stack",
272272
"softwareType-cloud": "Cloud Hosted App",
273273
"supportedOS": "Supported OS",
274-
"repoMetadata": "Medata From Repository",
275-
"repoLastCommit": "Last Commit",
276-
"repoLastClosedIssuePullRequest": "Last Merged Request",
277-
"repoLastClosedIssue": "Last Close Issue"
274+
"repoMetadata": "Metadata from repository",
275+
"repoLastCommit": "Last commit",
276+
"repoLastClosedIssuePullRequest": "Last merged request",
277+
"repoLastClosedIssue": "Last closed issue"
278278
},
279279
"referencedInstancesTab": {
280280
"publicInstanceCount": "{{instanceCount}} maintained public $t(referencedInstancesTab.instance, {\"count\": {{instanceCount}} }) by {{organizationCount}} public $t(referencedInstancesTab.organization, {\"count\": {{organizationCount}} })",

web/src/ui/i18n/sill_fr.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -274,10 +274,10 @@
274274
"softwareType-stack": "Stack",
275275
"softwareType-cloud": "Application cloud",
276276
"supportedOS": "Système d'exploitation supporté",
277-
"repoMetadata": "Meta données de la forge logicielle",
278-
"repoLastCommit": "Denier Commit",
279-
"repoLastClosedIssuePullRequest": "Dernier merge",
280-
"repoLastClosedIssue": "Dernière issue fermé"
277+
"repoMetadata": "Metadonnées de la forge logicielle",
278+
"repoLastCommit": "Dernier commit",
279+
"repoLastClosedIssuePullRequest": "Dernière demande de merge",
280+
"repoLastClosedIssue": "Dernier ticket fermé"
281281
},
282282
"referencedInstancesTab": {
283283
"publicInstanceCount": "{{instanceCount}} $t(referencedInstancesTab.instance, {\"count\": {{instanceCount}} }) web $t(referencedInstancesTab.maintain, {\"count\": {{instanceCount}} }) par {{organizationCount}} $t(referencedInstancesTab.organization, {\"count\": {{organizationCount}} }) $t(referencedInstancesTab.public, {\"count\": {{organizationCount}} }",

web/src/ui/pages/softwareDetails/PreviewTab.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,8 @@ export const PreviewTab = (props: Props) => {
402402
<span>
403403
{useFormattedDate({
404404
time: repoMetadata.healthCheck.lastClosedIssue,
405-
showTime: false
405+
showTime: false,
406+
doAlwaysShowYear: true
406407
})}
407408
</span>
408409
</p>
@@ -417,7 +418,8 @@ export const PreviewTab = (props: Props) => {
417418
{useFormattedDate({
418419
time: repoMetadata.healthCheck
419420
.lastClosedIssuePullRequest,
420-
showTime: false
421+
showTime: false,
422+
doAlwaysShowYear: true
421423
})}
422424
</span>
423425
</p>
@@ -430,7 +432,8 @@ export const PreviewTab = (props: Props) => {
430432
<span>
431433
{useFormattedDate({
432434
time: repoMetadata.healthCheck.lastCommit,
433-
showTime: false
435+
showTime: false,
436+
doAlwaysShowYear: true
434437
})}
435438
</span>
436439
</p>

0 commit comments

Comments
 (0)