Add a new language
Closed this issue · 5 comments
daverBellus3D commented
I need Japanese Localizable.strings added. How can I do that?
daverBellus3D commented
Why did you close this without comment?
3lvis commented
Hi @daverBellus3D, I'm sorry but had to close old issues so I can start following up on new issues. If this is still an issue for you I'm happy to reopen it. Again, sorry for the lack of communication.
daverBellus3D commented
I would still like to know how I can add Japanese localization to your pod.
Thanks,
Dave
…On Fri, Oct 9, 2020 at 4:30 AM E L V I S ***@***.***> wrote:
Hi @daverBellus3D <https://github.com/daverBellus3D>, I'm sorry but had
to close old issues so I can start following up on new issues. If this is
still an issue for you I'm happy to reopen it. Again, sorry for the lack of
communication.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#176 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKS23GAZKINBMKEA6XZBNXLSJ3X45ANCNFSM4KLKXHRQ>
.
--
-------
Dave Rothschild
iOS Engineering Manager
Bellus3D, Inc.
408-859-5170
Firas-Shrourou commented
You can localize the title and close button
let viewController = BarcodeScannerViewController()
viewController.headerViewController.titleLabel.text = "Page_Title_Scan_Barcode".localized
viewController.headerViewController.closeButton.setTitle("btn_Close".localized, for: .normal)
viewController.codeDelegate = self
viewController.errorDelegate = self
viewController.dismissalDelegate = self
return viewController
3lvis commented
Thanks @Firas-Shrourou,
This should fix it.