diff --git a/i18n.ts b/i18n.ts index b4c2d019d9..e0bcbb6f72 100644 --- a/i18n.ts +++ b/i18n.ts @@ -195,9 +195,9 @@ i18n.enableFallback = true; } return ["other"]; } ); - i18n.pluralization.register( "cs", ( _i18n, count ) => { return westSlavic( count, "cs" ); } ); - i18n.pluralization.register( "fr", ( _i18n, count ) => { return oneUptoTwoOther( count, "fr" ); } ); - i18n.pluralization.register( "hr", oneFewOther ); + i18n.pluralization.register( "cs", ( _i18n, count ) => westSlavic( count, "cs" ) ); + i18n.pluralization.register( "fr", ( _i18n, count ) => oneUptoTwoOther( count, "fr" ) ); + i18n.pluralization.register( "hr", ( _i18n, count ) => oneFewOther( count, "hr" ) ); i18n.pluralization.register( "id", other ); i18n.pluralization.register( "ja", other ); i18n.pluralization.register( "ko", other ); @@ -273,9 +273,9 @@ i18n.enableFallback = true; } return ["other"]; } ); - i18n.pluralization.register( "ru", ( _i18n, count ) => { return eastSlavic( count, "ru" ); } ); - i18n.pluralization.register( "sk", ( _i18n, count ) => { return westSlavic( count, "sk" ); } ); - i18n.pluralization.register( "uk", ( _i18n, count ) => { return eastSlavic( count, "uk" ); } ); + i18n.pluralization.register( "ru", ( _i18n, count ) => eastSlavic( count, "ru" ) ); + i18n.pluralization.register( "sk", ( _i18n, count ) => westSlavic( count, "sk" ) ); + i18n.pluralization.register( "uk", ( _i18n, count ) => eastSlavic( count, "uk" ) ); i18n.pluralization.register( "zh", other ); i18n.pluralization.register( "zh-CN", other ); i18n.pluralization.register( "zh-HK", other ); diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 2888de94fc..772fa3667f 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -803,7 +803,7 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/yoga" SPEC CHECKSUMS: - boost: 57d2868c099736d80fcd648bf211b4431e51a558 + boost: 0a937fbcfdd646fca221c4f1d9750d7ccfdfc2dc BVLinearGradient: 880f91a7854faff2df62518f0281afb1c60d49a3 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 @@ -896,4 +896,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 58e8d3aa699d6b32fb4c1e764273a8b0beb6c57e -COCOAPODS: 1.12.1 +COCOAPODS: 1.14.3 diff --git a/package.json b/package.json index 6efdb730d0..cd6dcb0e97 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,8 @@ "lint": "npm run lint:eslint", "lint:eslint": "eslint .", "lint:flow": "flow check", - "test": "jest", - "test:watch": "jest --watch", + "test": "TZ=UTC jest", + "test:watch": "TZ=UTC jest --watch", "prepare": "husky install", "postinstall": "patch-package", "e2e:build": "npx detox build --configuration ios.sim.release",