@dynamic-labs/locale 4.79.1 → 4.79.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +2 -2
- package/src/lib/en/translation.cjs +6 -0
- package/src/lib/en/translation.d.ts +6 -0
- package/src/lib/en/translation.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.79.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.79.1...v4.79.2) (2026-05-04)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **react-native:** remove extra react-native turbo modules instructions ([#11126](https://github.com/dynamic-labs/dynamic-auth/issues/11126))
|
|
8
|
+
|
|
2
9
|
### [4.79.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.79.0...v4.79.1) (2026-05-01)
|
|
3
10
|
|
|
4
11
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/locale",
|
|
3
|
-
"version": "4.79.
|
|
3
|
+
"version": "4.79.2",
|
|
4
4
|
"description": "Locale for Dynamic SDK",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"i18next": "23.4.6",
|
|
22
22
|
"react-i18next": "13.5.0",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.79.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.79.2"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -1360,6 +1360,12 @@ const translation = {
|
|
|
1360
1360
|
done: 'Done',
|
|
1361
1361
|
error_title: "Cloud backup failed. Don't worry, your account is still safe.",
|
|
1362
1362
|
error_try_again: 'Try Again',
|
|
1363
|
+
gdrive_grant_access_title: 'Confirm Drive permission',
|
|
1364
|
+
gdrive_grant_access_subtitle: 'Allow {{appName}} to save an encrypted backup file to your Google Drive.',
|
|
1365
|
+
gdrive_grant_access_cta: 'Grant access',
|
|
1366
|
+
gdrive_grant_access_cancel: 'Cancel',
|
|
1367
|
+
gdrive_grant_access_error: "We couldn't get Drive permission. Please try again.",
|
|
1368
|
+
gdrive_post_flight_title: "Drive permission was missing. Grant access and we'll finish the backup.",
|
|
1363
1369
|
},
|
|
1364
1370
|
},
|
|
1365
1371
|
/**
|
|
@@ -1356,6 +1356,12 @@ export declare const translation: {
|
|
|
1356
1356
|
done: string;
|
|
1357
1357
|
error_title: string;
|
|
1358
1358
|
error_try_again: string;
|
|
1359
|
+
gdrive_grant_access_title: string;
|
|
1360
|
+
gdrive_grant_access_subtitle: string;
|
|
1361
|
+
gdrive_grant_access_cta: string;
|
|
1362
|
+
gdrive_grant_access_cancel: string;
|
|
1363
|
+
gdrive_grant_access_error: string;
|
|
1364
|
+
gdrive_post_flight_title: string;
|
|
1359
1365
|
};
|
|
1360
1366
|
};
|
|
1361
1367
|
/**
|
|
@@ -1356,6 +1356,12 @@ const translation = {
|
|
|
1356
1356
|
done: 'Done',
|
|
1357
1357
|
error_title: "Cloud backup failed. Don't worry, your account is still safe.",
|
|
1358
1358
|
error_try_again: 'Try Again',
|
|
1359
|
+
gdrive_grant_access_title: 'Confirm Drive permission',
|
|
1360
|
+
gdrive_grant_access_subtitle: 'Allow {{appName}} to save an encrypted backup file to your Google Drive.',
|
|
1361
|
+
gdrive_grant_access_cta: 'Grant access',
|
|
1362
|
+
gdrive_grant_access_cancel: 'Cancel',
|
|
1363
|
+
gdrive_grant_access_error: "We couldn't get Drive permission. Please try again.",
|
|
1364
|
+
gdrive_post_flight_title: "Drive permission was missing. Grant access and we'll finish the backup.",
|
|
1359
1365
|
},
|
|
1360
1366
|
},
|
|
1361
1367
|
/**
|