Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
7a6cf5c
fix: weed out all contact and conversation list item locators
Miki-Session Aug 12, 2025
bd073f9
feat: begin using uiscrollable instead of blind scrolling
Miki-Session Aug 12, 2025
44968cf
fix: only use locator class for accountid
Miki-Session Aug 12, 2025
29f7428
fix: Android locator changes
Miki-Session Aug 13, 2025
c09ee8a
fix: more Android locator changes
Miki-Session Aug 13, 2025
ba4db65
fix: create account util clicks close settings
Miki-Session Aug 13, 2025
acb1bca
fix: editusernamebutton is still username on ios
Miki-Session Aug 14, 2025
a054565
Merge remote-tracking branch 'origin/main' into dev
Miki-Session Aug 14, 2025
f9bdc10
fix: ios doesn't have clear input button
Miki-Session Aug 15, 2025
6499905
fix: don't console.error for not found
Miki-Session Aug 15, 2025
311a9be
feat: set app disguise test on iOS
Miki-Session Aug 15, 2025
eb57ead
fix: remove blind sleeps and scrolls
Miki-Session Aug 15, 2025
cea2cc7
fix: standardise control message logging
Miki-Session Aug 17, 2025
d133b3a
feat: truncate long selector descriptions
Miki-Session Aug 18, 2025
c73f623
feat: add steps to app disguise tests
Miki-Session Aug 18, 2025
fc79d74
fix: use ax id for conversationitem
Miki-Session Aug 21, 2025
3639587
feat: add emoji react send tests
Miki-Session Aug 21, 2025
b0e1f9a
fix: use whatever text is available for logging
Miki-Session Aug 21, 2025
c6f2786
chore: rename allure suite
Miki-Session Aug 21, 2025
cf265af
fix: community input is now an id
Miki-Session Aug 21, 2025
c76563b
fix: path menu item is now an uiscrollable
Miki-Session Aug 21, 2025
a3d8eb0
feat: add community emoji react test
Miki-Session Aug 21, 2025
4a0a2b3
feat: allow links for known bugs in allure reports
Miki-Session Aug 21, 2025
6899783
feat: add in allure links for current known issues
Miki-Session Aug 21, 2025
cc68a54
fix: move allure test info to helper file
Miki-Session Aug 21, 2025
dfab494
chore: fix step description
Miki-Session Aug 21, 2025
b534e46
chore: remove SES link
Miki-Session Aug 21, 2025
f3aa4c3
feat: community poll limit on ios
Miki-Session Aug 22, 2025
1224668
refactor!: scrub all occurrences of message body selector
Miki-Session Aug 22, 2025
bcb1c3d
fix: add visible check to verifyelementnotpresent
Miki-Session Aug 22, 2025
cf201a5
fix more failing tests
Miki-Session Aug 22, 2025
ce03842
Merge remote-tracking branch 'origin/main' into dev
Miki-Session Aug 25, 2025
ada09ed
[Automated] Update translations from Crowdin
ThomasSession Aug 26, 2025
662c48d
Merge pull request #70 from session-foundation/feature/update-crowdin…
Miki-Session Aug 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion run/localizer/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@ export enum LOCALE_DEFAULTS {
token_name_short = 'SESH',
usd_name_short = 'USD',
app_pro = 'Session Pro',
session_foundation = 'Session Foundation',
pro = 'Pro',
}

export const rtlLocales = ['ar', 'fa', 'he', 'ps', 'ur'];

export const crowdinLocales = ['en'] as const;
export const crowdinLocales = [
'en',
] as const;

export type CrowdinLocale = (typeof crowdinLocales)[number];

export function isCrowdinLocale(locale: string): locale is CrowdinLocale {
return crowdinLocales.includes(locale as CrowdinLocale);
}

Loading
Loading