Skip to content

Commit 49a052b

Browse files
committed
see #203 : fix config and text
1 parent e4a731e commit 49a052b

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
@@ -274,10 +274,10 @@
274274
"softwareType-stack": "Stack",
275275
"softwareType-cloud": "Cloud Hosted App",
276276
"supportedOS": "Supported OS",
277-
"repoMetadata": "Medata From Repository",
278-
"repoLastCommit": "Last Commit",
279-
"repoLastClosedIssuePullRequest": "Last Merged Request",
280-
"repoLastClosedIssue": "Last Close Issue"
277+
"repoMetadata": "Metadata from repository",
278+
"repoLastCommit": "Last commit",
279+
"repoLastClosedIssuePullRequest": "Last merged request",
280+
"repoLastClosedIssue": "Last closed issue"
281281
},
282282
"referencedInstancesTab": {
283283
"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
@@ -277,10 +277,10 @@
277277
"softwareType-stack": "Stack",
278278
"softwareType-cloud": "Application cloud",
279279
"supportedOS": "Système d'exploitation supporté",
280-
"repoMetadata": "Meta données de la forge logicielle",
281-
"repoLastCommit": "Denier Commit",
282-
"repoLastClosedIssuePullRequest": "Dernier merge",
283-
"repoLastClosedIssue": "Dernière issue fermé"
280+
"repoMetadata": "Metadonnées de la forge logicielle",
281+
"repoLastCommit": "Dernier commit",
282+
"repoLastClosedIssuePullRequest": "Dernière demande de merge",
283+
"repoLastClosedIssue": "Dernier ticket fermé"
284284
},
285285
"referencedInstancesTab": {
286286
"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
@@ -415,7 +415,8 @@ export const PreviewTab = (props: Props) => {
415415
<span>
416416
{useFormattedDate({
417417
time: repoMetadata.healthCheck.lastClosedIssue,
418-
showTime: false
418+
showTime: false,
419+
doAlwaysShowYear: true
419420
})}
420421
</span>
421422
</p>
@@ -430,7 +431,8 @@ export const PreviewTab = (props: Props) => {
430431
{useFormattedDate({
431432
time: repoMetadata.healthCheck
432433
.lastClosedIssuePullRequest,
433-
showTime: false
434+
showTime: false,
435+
doAlwaysShowYear: true
434436
})}
435437
</span>
436438
</p>
@@ -443,7 +445,8 @@ export const PreviewTab = (props: Props) => {
443445
<span>
444446
{useFormattedDate({
445447
time: repoMetadata.healthCheck.lastCommit,
446-
showTime: false
448+
showTime: false,
449+
doAlwaysShowYear: true
447450
})}
448451
</span>
449452
</p>

0 commit comments

Comments
 (0)