-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing semicolon in localization
- Loading branch information
Showing
4 changed files
with
21 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 18 additions & 3 deletions
21
Sources/CorePermissionsSwiftUI/Resources/it.lproj/Localizable.strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
/* MARK: Allow Button */ | ||
"button_allow" = "CONSENTIRE"; | ||
"button_allowed" = "CONSENTITO"; | ||
"button_denied" = "NEGATO"; | ||
"button_allow" = "ALLOW"; | ||
"button_allowed" = "ALLOWED"; | ||
"button_denied" = "DENIED"; | ||
|
||
/* MARK: UI labels */ | ||
"permission_header" = "Need Permissions"; | ||
|
||
"permission_primary_label" = "In order for you use certain features of this app, you need to give permissions. See description for each permission"; | ||
|
||
"permission_secondary_label" = "Permission are necessary for all the features and functions to work properly. If not allowed, you have to enable permissions in settings"; | ||
|
||
/* MARK: Permissions (name & description) */ | ||
"camera_title" = "Camera"; | ||
"camera_description" = "Allow to use your camera"; | ||
|
||
"health_title" = "Health"; | ||
"health_description" = "Allow to access your health information"; | ||
|
||
|