fix localization files

This commit is contained in:
tapframe 2026-02-17 14:57:02 +05:30
parent 7eadee8fd8
commit 8603b1ea86
8 changed files with 30 additions and 20 deletions

View file

@ -5,13 +5,22 @@
},
"build": {
"development": {
"env": {
"SENTRY_DISABLE_AUTO_UPLOAD": "true"
},
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"env": {
"SENTRY_DISABLE_AUTO_UPLOAD": "true"
},
"distribution": "internal"
},
"production": {
"env": {
"SENTRY_DISABLE_AUTO_UPLOAD": "true"
},
"autoIncrement": true,
"extends": "apk",
"android": {
@ -21,12 +30,18 @@
}
},
"release": {
"env": {
"SENTRY_DISABLE_AUTO_UPLOAD": "true"
},
"distribution": "store",
"android": {
"buildType": "app-bundle"
}
},
"apk": {
"env": {
"SENTRY_DISABLE_AUTO_UPLOAD": "true"
},
"android": {
"buildType": "apk",
"gradleCommand": ":app:assembleRelease"

View file

@ -6,7 +6,7 @@
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"build": "export NODE_ENV=production && cd android && ./gradlew assembleRelease",
"build": "export NODE_ENV=production && export SENTRY_DISABLE_AUTO_UPLOAD=true && cd android && ./gradlew assembleRelease",
"postinstall": "patch-package"
},
"dependencies": {

View file

@ -1424,4 +1424,5 @@
"no_logs_captured": "Нема снимено логови."
}
}
}
}
}

View file

@ -625,8 +625,7 @@
"enter_custom_key": "Voer je eigen TMDb API key in en sla op.",
"key_verified": "API key geverifieerd en succesvol opgeslagen."
},
{
"settings": {
"settings": {
"language": "Taal",
"select_language": "Selecteer taal",
"english": "Engels",
@ -650,7 +649,7 @@
"slovenian": "Sloveens",
"macedonian": "Macedonisch",
"russian": "Russisch",
"filipino": "Filipijns"
"filipino": "Filipijns",
"dutch_nl": "Nederlands (Nederland)",
"romanian": "Roemeens",
"albanian": "Albanees",
@ -1029,8 +1028,7 @@
"no_upcoming_found": "Geen aankomende afleveringen gevonden",
"add_series_desc": "Voeg series toe aan je bibliotheek om ze hier te zien"
},
{
"mdblist": {
"mdblist": {
"title": "Beoordelingsbronnen",
"status_disabled": "MDBList uitgeschakeld",
"status_active": "API-key actief",
@ -1429,4 +1427,4 @@
"no_logs_captured": "Geen logs vastgelegd."
}
}
}
}

View file

@ -625,8 +625,7 @@
"enter_custom_key": "Te rugăm să introduci și să salvezi cheia personalizată.",
"key_verified": "Cheia API a fost verificată și salvată cu succes."
},
{
"settings": {
"settings": {
"language": "Limbă",
"select_language": "Selectează limba",
"english": "Engleză",
@ -1029,8 +1028,7 @@
"no_upcoming_found": "Niciun episod viitor găsit",
"add_series_desc": "Adaugă seriale în bibliotecă pentru a vedea episoadele lor viitoare aici"
},
{
"mdblist": {
"mdblist": {
"title": "Surse de evaluare",
"status_disabled": "MDBList dezactivat",
"status_active": "Cheie API activă",
@ -1429,4 +1427,4 @@
"no_logs_captured": "Niciun log capturat."
}
}
}
}

View file

@ -625,8 +625,7 @@
"enter_custom_key": "Ju lutem jepni dhe ruani çelësin tuaj personal.",
"key_verified": "Çelësi API u verifikua dhe u ruajt me sukses."
},
{
"settings": {
"settings": {
"language": "Gjuha",
"select_language": "Zgjidh Gjuhën",
"english": "Anglisht",
@ -973,8 +972,7 @@
"alert_disconnect_title": "Shkëput Torbox",
"alert_disconnect_msg": "Jeni të sigurt? Kjo do të fshijë çelësin API të ruajtur."
},
{
"home_screen": {
"home_screen": {
"title": "Cilësimet e Ekranit Kryesor",
"changes_applied": "Ndryshimet u aplikuan",
"display_options": "OPSIONET E SHFAQJES",
@ -1429,4 +1427,4 @@
"no_logs_captured": "Nuk u kap asnjë log."
}
}
}
}

View file

@ -11,7 +11,7 @@ import { useToast } from '../contexts/ToastContext';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
const EMAIL_CONFIRMATION_REQUIRED_PREFIX = '__EMAIL_CONFIRMATION__';
const AUTH_BG_GRADIENT = ['#07090F', '#0D1020', '#140B24'];
const AUTH_BG_GRADIENT = ['#07090F', '#0D1020', '#140B24'] as const;
const normalizeAuthErrorMessage = (input: string): string => {
const raw = (input || '').trim();

View file

@ -1,7 +1,7 @@
// Single source of truth for the app version displayed in Settings
// Update this when bumping app version
export const APP_VERSION = '1.3.7';
export const APP_VERSION = '1.3.8';
export function getDisplayedAppVersion(): string {
return APP_VERSION;