Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update translation for identity document #3632

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
/* Accessibility label when back identity card photo has successfully uploaded */
"Back identity card photo successfully uploaded" = "Back identity card photo successfully uploaded";

/* Description of back of identity card image
Title of ID document scanning screen when scanning the back of an identity card */
/* Description of back of identity card image */
"Back of identity card" = "Back of identity card";

/* Title of ID document scanning screen when scanning the back of an identity card */
"Back of identity document" = "Back of identity document";

/* Error title displayed to the user when camera permissions have been denied
Title displayed when requesting camera permissions */
"Camera permission" = "Camera permission";
Expand Down Expand Up @@ -56,10 +58,12 @@
/* Accessibility label when front identity card photo has successfully uploaded */
"Front identity card photo successfully uploaded" = "Front identity card photo successfully uploaded";

/* Description of front of identity card image
Title of ID document scanning screen when scanning the front of an identity card */
/* Description of front of identity card image */
"Front of identity card" = "Front of identity card";

/* Title of ID document scanning screen when scanning the front of an identity card */
"Front of identity document" = "Front of identity document";

/* Title for document front warmup page */
"Get ready to scan your photo ID" = "Get ready to scan your photo ID";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ extension DocumentCaptureViewController {
func titleText(for side: DocumentSide) -> String {
if side == .front {
return STPLocalizedString(
"Front of identity card",
"Front of identity document",
"Title of ID document scanning screen when scanning the front of an identity card"
)
} else {
return STPLocalizedString(
"Back of identity card",
"Back of identity document",
"Title of ID document scanning screen when scanning the back of an identity card"
)
}
Expand Down