Skip to content

Commit 2335480

Browse files
committed
Fix missing semicolon in localization
1 parent 6aafe2a commit 2335480

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

Sources/CorePermissionsSwiftUI/Resources/de.lproj/Localizable.strings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
/* MARK: Permissions (name & description) */
1414
"camera_title" = "Kamera";
15-
"camera_description" = "Erlaube die Verwendung der Kamera"
15+
"camera_description" = "Erlaube die Verwendung der Kamera";
1616

1717
"health_title" = "Health";
1818
"health_description" = "Erlauben Sie den Zugriff auf Ihre Gesundheitsinformationen";

Sources/CorePermissionsSwiftUI/Resources/en.lproj/Localizable.strings

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212

1313
/* MARK: Permissions (name & description) */
1414
"camera_title" = "Camera";
15-
"camera_description" = "Allow to use your camera"
16-
15+
"camera_description" = "Allow to use your camera";
1716
"health_title" = "Health";
1817
"health_description" = "Allow to access your health information";
1918

Sources/CorePermissionsSwiftUI/Resources/fr.lproj/Localizable.strings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
/* MARK: Permissions (name & description) */
1616
"camera_title" = "Caméra";
17-
"camera_description" = "Autoriser l'utilisation de la caméra"
17+
"camera_description" = "Autoriser l'utilisation de la caméra";
1818

1919
"health_title" = "Santé";
2020
"health_description" = "Autoriser l'accés aux informations de santé";
Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
/* MARK: Allow Button */
2-
"button_allow" = "CONSENTIRE";
3-
"button_allowed" = "CONSENTITO";
4-
"button_denied" = "NEGATO";
2+
"button_allow" = "ALLOW";
3+
"button_allowed" = "ALLOWED";
4+
"button_denied" = "DENIED";
5+
6+
/* MARK: UI labels */
7+
"permission_header" = "Need Permissions";
8+
9+
"permission_primary_label" = "In order for you use certain features of this app, you need to give permissions. See description for each permission";
10+
11+
"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";
12+
13+
/* MARK: Permissions (name & description) */
14+
"camera_title" = "Camera";
15+
"camera_description" = "Allow to use your camera";
16+
17+
"health_title" = "Health";
18+
"health_description" = "Allow to access your health information";
19+
520

0 commit comments

Comments
 (0)