@umituz/react-native-ai-generation-content 1.26.62 → 1.26.63

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.26.62",
3
+ "version": "1.26.63",
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",
@@ -208,6 +208,7 @@ export function CreationsGalleryScreen({
208
208
  saving: t("result.saving"),
209
209
  shareButton: t("result.shareButton"),
210
210
  sharing: t("result.sharing"),
211
+ tryAnother: t("result.tryAnother"),
211
212
  }}
212
213
  />
213
214
  <StarRatingPicker
@@ -88,6 +88,7 @@ export const WizardStepRenderer: React.FC<WizardStepRendererProps> = ({
88
88
  saving: t("generation.result.saving"),
89
89
  shareButton: t("generation.result.share"),
90
90
  sharing: t("generation.result.sharing"),
91
+ tryAnother: t("generation.result.tryAnother"),
91
92
  }}
92
93
  />
93
94
  );
@@ -143,8 +143,8 @@ export interface ResultPreviewTranslations {
143
143
  shareButton: string;
144
144
  /** Sharing button */
145
145
  sharing: string;
146
- /** Try again button text (optional when iconOnly is true) */
147
- tryAnother?: string;
146
+ /** Try again button text */
147
+ tryAnother: string;
148
148
  /** Rate button */
149
149
  rateButton?: string;
150
150
  /** Recent creations section title */