Skip to content

Commit

Permalink
Fix missing semicolon in localization
Browse files Browse the repository at this point in the history
  • Loading branch information
jevonmao committed May 13, 2022
1 parent 6aafe2a commit 2335480
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

/* MARK: Permissions (name & description) */
"camera_title" = "Kamera";
"camera_description" = "Erlaube die Verwendung der Kamera"
"camera_description" = "Erlaube die Verwendung der Kamera";

"health_title" = "Health";
"health_description" = "Erlauben Sie den Zugriff auf Ihre Gesundheitsinformationen";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@

/* MARK: Permissions (name & description) */
"camera_title" = "Camera";
"camera_description" = "Allow to use your camera"

"camera_description" = "Allow to use your camera";
"health_title" = "Health";
"health_description" = "Allow to access your health information";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

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

"health_title" = "Santé";
"health_description" = "Autoriser l'accés aux informations de santé";
Expand Down
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";


0 comments on commit 2335480

Please sign in to comment.