Revert free minutes from 4,800 to 1,200 in all locales#5956
Merged
Conversation
Contributor
Greptile SummaryThis PR reverts the free/premium minutes quota display from 4,800 back to 1,200 across all 34 ARB locale files, their 35 generated Dart counterparts, and the two backend Helm charts — aligning the app UI copy with the backend Key changes:
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["Backend Helm Charts\n(prod_omi_backend_listen_values.yaml\nprod_omi_pusher_values.yaml)\nBASIC_TIER_MINUTES_LIMIT_PER_MONTH\n4800 → 1200"] --> B["Backend Runtime\nEnforces 1,200 min/month\nquota for basic tier"]
C["ARB Locale Files\n(34 files)\nfreeMinutesMonth\nbasicPlanDescription\npremiumMinutesInfo\npremiumMinutesMonth\n4,800 → 1,200"] --> D["Flutter Gen-L10n\nGenerates Dart files\n(35 files)"]
D --> E["App UI\nDisplays '1,200 free\nminutes/month'"]
B & E --> F["✅ Backend & UI in sync\nat 1,200 min/month"]
Reviews (1): Last reviewed commit: "Revert free minutes from 4,800 to 1,200 ..." | Re-trigger Greptile |
Glucksberg
pushed a commit
to Glucksberg/omi-local
that referenced
this pull request
Apr 28, 2026
…#5956) ## Summary Reverts the free minutes display from 4,800 back to 1,200 across all locale files. The backend env var `BASIC_TIER_MINUTES_LIMIT_PER_MONTH` has already been changed to 1200 by Aarav — this PR updates the app-side strings to match. ## Changes - **34 ARB locale files**: Updated `freeMinutesMonth`, `basicPlanDescription`, `premiumMinutesInfo`, and `premiumMinutesMonth` strings - **35 generated Dart localization files**: Same substitutions in generated code - **2 backend Helm values**: Updated `BASIC_TIER_MINUTES_LIMIT_PER_MONTH` from `4800` to `1200` in `prod_omi_pusher_values.yaml` and `prod_omi_backend_listen_values.yaml` Respects each locale's number formatting: - English/most: `4,800` → `1,200` - French/Finnish/Swedish/Norwegian/etc: `4 800` → `1 200` - German/Italian/Portuguese/etc: `4.800` → `1.200` - Estonian/Latvian/etc: `4800` → `1200` Reverts commits: `3d4937f28`, `92eb0fe14`, `f6719482c` ## No logic changes Purely string/text updates. No functionality changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Reverts the free minutes display from 4,800 back to 1,200 across all locale files.
The backend env var
BASIC_TIER_MINUTES_LIMIT_PER_MONTHhas already been changed to 1200 by Aarav — this PR updates the app-side strings to match.Changes
freeMinutesMonth,basicPlanDescription,premiumMinutesInfo, andpremiumMinutesMonthstringsBASIC_TIER_MINUTES_LIMIT_PER_MONTHfrom4800to1200inprod_omi_pusher_values.yamlandprod_omi_backend_listen_values.yamlRespects each locale's number formatting:
4,800→1,2004 800→1 2004.800→1.2004800→1200Reverts commits:
3d4937f28,92eb0fe14,f6719482cNo logic changes
Purely string/text updates. No functionality changes.