@@ -28,19 +28,19 @@ enum FileStatus: int {
2828 public function getLabel (IL10N $ l10n ): string {
2929 return match ($ this ) {
3030 // TRANSLATORS Name of the status when document is not a LibreSign file
31- self ::NOT_LIBRESIGN_FILE => $ l10n ->t ('not LibreSign file ' ),
31+ self ::NOT_LIBRESIGN_FILE => $ l10n ->t ('Not LibreSign file ' ),
3232 // TRANSLATORS Name of the status that the document is still as a draft
33- self ::DRAFT => $ l10n ->t ('draft ' ),
33+ self ::DRAFT => $ l10n ->t ('Draft ' ),
3434 // TRANSLATORS Name of the status that the document can be signed
3535 self ::ABLE_TO_SIGN => $ l10n ->t ('Ready to sign ' ),
3636 // TRANSLATORS Name of the status when the document has already been partially signed
3737 self ::PARTIAL_SIGNED => $ l10n ->t ('Partially signed ' ),
3838 // TRANSLATORS Name of the status when the document has been completely signed
39- self ::SIGNED => $ l10n ->t ('signed ' ),
39+ self ::SIGNED => $ l10n ->t ('Signed ' ),
4040 // TRANSLATORS Name of the status when the document was deleted
41- self ::DELETED => $ l10n ->t ('deleted ' ),
41+ self ::DELETED => $ l10n ->t ('Deleted ' ),
4242 // TRANSLATORS Name of the status when the document is currently being signed
43- self ::SIGNING_IN_PROGRESS => $ l10n ->t ('signing in progress ' ),
43+ self ::SIGNING_IN_PROGRESS => $ l10n ->t ('Signing in progress ' ),
4444 };
4545 }
4646}
0 commit comments