@umituz/react-native-ai-generation-content 1.17.276 → 1.17.277

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.17.276",
3
+ "version": "1.17.277",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -53,7 +53,7 @@ export function CreationsGalleryScreen({
53
53
 
54
54
  const { isSharing, isSaving, handleDownload, handleShare } = useResultActions({
55
55
  imageUrl: selectedImageUrl,
56
- onSaveSuccess: () => alert.show(AlertType.SUCCESS, AlertMode.TOAST, t("common.success"), t("result.saved")),
56
+ onSaveSuccess: () => alert.show(AlertType.SUCCESS, AlertMode.TOAST, t("result.saveSuccess"), t("result.saveSuccessMessage")),
57
57
  onSaveError: () => alert.show(AlertType.ERROR, AlertMode.TOAST, t("common.error"), t("result.saveError")),
58
58
  });
59
59
 
@@ -180,9 +180,9 @@ export function CreationsGalleryScreen({
180
180
  translations={{
181
181
  title: t(config.translations.resultTitle ?? "result.title"),
182
182
  yourResult: t(config.translations.resultLabel ?? "result.yourResult"),
183
- saveButton: t("result.save"),
183
+ saveButton: t("result.saveButton"),
184
184
  saving: t("result.saving"),
185
- shareButton: t("result.share"),
185
+ shareButton: t("result.shareButton"),
186
186
  sharing: t("result.sharing"),
187
187
  tryAnother: t("result.tryAnother"),
188
188
  }}